#include <bits/stdc++.h>
#define int long long
using namespace std;
int const mxN = 2e5+5;
int n,m;
vector<pair<pair<int,int>,pair<int,int>>> v;
set<int> col[80005];
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(NULL);
cout.tie(NULL);
cin>>n>>m;
for(int i=0; i<n; i++) {
int a,b,c,d; cin>>a>>b>>c>>d;
v.push_back({{a,b},{c,d}});
}
for(int i=0; i<m; i++) {
int x,y,c; cin>>x>>y>>c;
for(int j=0; j<n; j++) {
if(v[j].first.first<=x && x<=v[j].second.first && v[j].first.second<=y && y<=v[j].second.second) col[j].insert(c);
}
}
for(int i=0; i<n; i++) cout<<col[i].size()<<'\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2048 ms |
191304 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2031 ms |
388704 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2037 ms |
495728 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2055 ms |
505884 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2107 ms |
443888 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |