# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1018707 | 2024-07-10T08:45:13 Z | vjudge1 | Karte (COCI18_karte) | C++17 | 83 ms | 9396 KB |
#include <bits/stdc++.h> using namespace std; const int N = 5e5 + 10; int n, k, a[N], cnt[N]; int main(){ cin >> n >> k; for (int i = 1; i <= n; i ++) cin >> a[i], cnt[a[i]]++; int sm = 0; for (int i = 1; i <= k; i ++) sm += cnt[i]; if (sm < (n - k)){ cout << -1 << endl; return 0; } int need = sm - (n - k); vector<int> vec; for (int i = N - 1; i > k; i --){ while (cnt[i]){ cnt[i]--; vec.push_back(i); } } need += vec.size(); for (int i = k - 1; i > 0; i --){ while (vec.size() < 1e9 and cnt[i]){ cnt[i]--; vec.push_back(i); } } vector<int> real; for (int i = 0; i < N; i ++){ for (int j = 0; j < cnt[i]; j ++) real.push_back(i); if (vec.empty()) continue; real.push_back(vec.back()); vec.pop_back(); } int lies = 0; for (int i = 0; i < real.size(); i ++){ if (real[i] <= lies) continue; lies++; } if (lies != k){ cout << -1 << endl; return 0; } for (int x : real) cout << x << " "; cout << endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 344 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 604 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 2516 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 47 ms | 4792 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 83 ms | 9396 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |