답안 #698760

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
698760 2023-02-14T09:29:05 Z haxorman 새 집 (APIO18_new_home) C++14
0 / 100
154 ms 3296 KB
#include <bits/stdc++.h>
using namespace std;

#define int long long

int32_t main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	
    int n, q, k;
    cin >> n >> q >> k;
    
    int lb = INT_MAX, rb = 0;
    set<int> check;
    for (int i = 0; i < n; ++i) {
        int x, t, a, b;
        cin >> x >> t >> a >> b;

        lb = min(lb, x);
        rb = max(rb, x);

        check.insert(t);
    }
    
    while (q--) {
        int l, y;
        cin >> l >> y;

        if (check.size() != k) {
            cout << "-1\n";
        }
        else {
            cout << max(abs(lb - l), abs(rb - l)) << "\n";
        }
    }
}

Compilation message

new_home.cpp: In function 'int32_t main()':
new_home.cpp:28:26: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
   28 |         if (check.size() != k) {
      |             ~~~~~~~~~~~~~^~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 154 ms 3296 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 107 ms 592 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -