# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
258160 | cheeheng | Devil's Share (RMI19_devil) | C++14 | 1588 ms | 1400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int D[12];
int X[505];
int ans[505];
int main(){
int T;
scanf("%d", &T);
while(T --){
int K;
scanf("%d", &K);
int S = 0;
for(int i = 1; i < 10; i ++){
scanf("%d", &D[i]);
S += D[i];
}
int cnt = 0;
for(int i = 1; i < 10; i ++){
for(int j = 0; j < D[i]; j ++){
X[cnt++] = i;
}
}
sort(X, X+S);
if(K == 2){
for(int i = 0; i < S; i ++){
if(i%2 == 0){
ans[i] = X[S-1-i/2];
}else{
ans[i] = X[i/2];
}
}
reverse(ans, ans+S);
for(int i = 0; i < S; i ++){
printf("%d", ans[i]);
}
printf("\n");
continue;
}
long long minVal = 1LL << 62;
do{
long long tempMax = 0;
for(int i = 0; i <= S-K; i ++){
long long temp = 0;
for(int j = i; j < i+K; j ++){
temp = temp*10+X[j];
}
//printf("%lld\n", temp);
tempMax = max(tempMax, temp);
}
if(tempMax < minVal){
for(int i = 0; i < S; i ++){
ans[i] = X[i];
}
minVal = tempMax;
//printf("tempMax=%lld\n", tempMax);
}
}while(next_permutation(X, X+S));
for(int i = 0; i < S; i ++){
printf("%d", ans[i]);
}
printf("\n");
}
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... |