제출 #1125540

#제출 시각아이디문제언어결과실행 시간메모리
1125540codexistentKarte (COCI18_karte)C11
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define MAXN 500005 #define ll long long #define FOR(i, a, b) for(ll i = a; i <= b; i++) ll n, k, c[MAXN]; int main(){ cin >> n >> k; FOR(i, 1, n) cin >> c[i]; sort(c + 1, c + 1 + n); for(ll i = k; i >= 1; i--){ if(c[n - (k - i)] < i){ cout << -1 << endl; return 0; } } if(n - k >= 1 && c[n - k] > k) { cout << -1 << endl; return 0; } FOR(i, k + 1, n) cout << c[n - (i - 1)] << " "; for(ll i = k; i >= 1; i--) cout << c[n - (k - i)] << " "; cout << endl; }

컴파일 시 표준 에러 (stderr) 메시지

karte.c:1:10: fatal error: bits/stdc++.h: No such file or directory
    1 | #include <bits/stdc++.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.