답안 #702318

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
702318 2023-02-23T14:10:49 Z josanneo22 새 집 (APIO18_new_home) C++11
0 / 100
116 ms 24264 KB
#include <bits/stdc++.h>
using namespace std;
int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
    int t = 1;
    while (t--) {
        int n, type, q;
        cin >> n >> type >> q;
        vector<long long> loc(n+3), tp(n + 3), st(n + 3), ed(n + 3);
        for (int i = 0; i < n; i++) {
            cin >> loc[i] >> tp[i] >> st[i] >> ed[i];
            tp[i]--;
        }
        for (int i = 0; i < q; i++) {
            int u, ti; cin >> u >> ti;
            long long ans = -1;
            vector<long long> cur_type(n, INT_MAX);
            for (int j = 0; j < n; j++) {
                if (st[j] <= ti && ti<=ed[j]) {
                    cur_type[tp[j]-1] = min(cur_type[tp[j]-1], abs(u - loc[j]));
                }
            }
            for (auto& x : cur_type) {
                ans = max(ans, x);
            }
            if (ans == INT_MAX) ans = -1;
            cout << ans << endl;
        }
    }
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 116 ms 24264 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 96 ms 24184 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -