# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83848 | 2018-11-11T11:31:06 Z | nikolapesic2802 | Karte (COCI18_karte) | C++14 | 963 ms | 52264 KB |
/* - Keep a variable k- how many cards need to be wrong until the end. */ #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back int main() { int n,k; scanf("%i %i",&n,&k); int t=k; multiset<int> karte; multiset<int,greater<int> > revkarte; revkarte.insert(-1); karte.insert(INT_MAX); for(int i=0;i<n;i++) { int a; scanf("%i",&a); karte.insert(a); revkarte.insert(a); } vector<int> choose; for(int i=0;i<n;i++) { int a=*karte.lower_bound(k); if(a!=INT_MAX) { choose.pb(a); karte.erase(karte.find(a)); revkarte.erase(revkarte.find(a)); if(a>k) k--; continue; } if(a==INT_MAX) { int b=*revkarte.upper_bound(k-1); if(b==-1) { karte.erase(karte.find(k-1)); revkarte.erase(revkarte.find(k-1)); choose.pb(k-1); k--; continue; } choose.pb(b); karte.erase(karte.find(b)); revkarte.erase(revkarte.find(b)); k--; continue; } } int tr=0; int cnt=0; for(int i=n-1;i>=0;i--) { //printf("%i ",choose[i]); if(choose[i]<=tr) { continue; } cnt++; tr++; } if(cnt==t) { for(int i=0;i<n;i++) { printf("%i ",choose[i]); } } else { printf("-1"); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Correct | 2 ms | 388 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 388 KB | Output is correct |
2 | Correct | 2 ms | 464 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 608 KB | Output is correct |
2 | Correct | 2 ms | 608 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 608 KB | Output is correct |
2 | Correct | 3 ms | 608 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 772 KB | Output is correct |
2 | Correct | 3 ms | 772 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 772 KB | Output is correct |
2 | Correct | 3 ms | 772 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 772 KB | Output is correct |
2 | Correct | 3 ms | 780 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 163 ms | 10968 KB | Output is correct |
2 | Correct | 158 ms | 10968 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 410 ms | 21336 KB | Output is correct |
2 | Correct | 351 ms | 21336 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 963 ms | 52264 KB | Output is correct |
2 | Correct | 954 ms | 52264 KB | Output is correct |