mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 03:31:59 +00:00
P3613 【深基15.例2】寄包柜
R39759186
This commit is contained in:
parent
d263a9d982
commit
7b818a5baf
28
problem/P3613/P3613.cpp
Normal file
28
problem/P3613/P3613.cpp
Normal file
@ -0,0 +1,28 @@
|
||||
#include<bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
map<int, map<int, int> > m;
|
||||
int n, q, t, i, j, k;
|
||||
cin >> n >> q;
|
||||
while(q--) {
|
||||
cin >> t >> i >> j;
|
||||
if(t == 1) {
|
||||
cin >> k;
|
||||
if(k == 0) {
|
||||
if(m.count(i) && m[i].count(j)) {
|
||||
m[i].erase(k);
|
||||
if(m[i].empty()) {
|
||||
m.erase(i);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
m[i][j] = k;
|
||||
}
|
||||
} else if(t == 2) {
|
||||
cout << m[i][j] << endl;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user