# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83852 | nikolapesic2802 | Karte (COCI18_karte) | C++14 | 524 ms | 28816 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
- Keep a variable k - how many cards need to be wrong until the end.
- If there is a card with value k in our current set, pick it
- else, If there is a card with a value greater than k, pick it and decrease k by 1.
- else, pick the card with the lowest value and decrease k by 1.
- Test if the cards we picked form a solution that is correct, if yes print it, if no print -1
*/
#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;
karte.insert(INT_MAX);
for(int i=0;i<n;i++)
{
int a;
scanf("%i",&a);
karte.insert(a);
}
vector<int> sol;
for(int i=0;i<n;i++)
{
int a=*karte.lower_bound(k);
if(a==INT_MAX)
{
a=*karte.begin();
}
sol.pb(a);
karte.erase(karte.find(a));
if(a!=k)
k--;
continue;
}
int cnt=0;
for(int i=n-1;i>=0;i--)
{
if(sol[i]>cnt)
cnt++;
}
if(cnt==t)
{
for(int i=0;i<n;i++)
{
printf("%i ",sol[i]);
}
}
else
{
printf("-1");
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |