답안 #702296

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
702296 2023-02-23T13:30:04 Z josanneo22 새 집 (APIO18_new_home) C++17
0 / 100
5000 ms 9980 KB
#include <bits/stdc++.h>
using namespace std;
int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
    int t = 1; //cin >> t;
    while (t--) {
        int n, type, q;
        cin >> n >> type >> q;
        vector<long long> loc(n), tp(n), st(n), ed(n);
        for (int i = 0; i < n; i++) {
            cin >> loc[i] >> tp[i] >> st[i] >> ed[i];
        }
        for (int i = 0; i < q; i++) {
            long long u, v; cin >> u >> v;
            vector<int> cur_type(type + 1, 0);
            long long ans = 0;
            for (int j = 0; j < n; j++) {
                if(st[j]<=v && ed[j]>=v){
                    ans = max(ans, abs(u-loc[j]));
                    cur_type[tp[j]]=1;
                }
            }
            int ok = 1;
            for (int p = 1; p <= type; p++) {
                ok&=cur_type[p];
            }
            if (ok == 0) cout << "-1\n";
            else cout << ans << '\n';
        }
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 1 ms 212 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 1 ms 212 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5055 ms 9980 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5065 ms 9768 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 1 ms 212 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 1 ms 212 KB Output isn't correct
5 Halted 0 ms 0 KB -