답안 #234413

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
234413 2020-05-24T07:14:31 Z VEGAnn Plahte (COCI17_plahte) C++14
0 / 160
2000 ms 4136 KB
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
using namespace std;
typedef long long ll;
const int N = 80100;
const int oo = 2e9;
unordered_set<int> st;
int a[N], b[N], c[N], d[N], n, m, x[N], y[N], k[N];

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0);

#ifdef _LOCAL
    freopen("in.txt","r",stdin);
#endif // _LOCAL

    cin >> n >> m;

    for (int i = 0; i < n; i++)
        cin >> a[i] >> b[i] >> c[i] >> d[i];

    for (int i = 0; i < m; i++)
        cin >> x[i] >> y[i] >> k[i];

    for (int i = 0; i < n; i++){
        int ans = 0;
        st.clear();

        for (int j = 0; j < m; j++)
            if (a[i] <= x[j] && c[i] >= x[j] && b[i] <= y[j] && d[i] >= y[j] &&
                st.find(k[j]) == st.end()){
                    ans++;
                    st.insert(k[j]);
                }

        cout << ans << '\n';
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2090 ms 2040 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2088 ms 2168 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2086 ms 2808 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2080 ms 4136 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2095 ms 4008 KB Time limit exceeded
2 Halted 0 ms 0 KB -