이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(x) (x).begin(),(x).end()
#define sz(x) (int)(x).size()
using namespace std;
typedef pair<int,int> ii;
signed main(){
ios_base::sync_with_stdio(false); cin.tie(0);
int TC; cin >> TC;
while(TC--){
int K; cin >> K;
int cnt[10];
int S = 0;
for(int i = 1;i <= 9;i++){
cin >> cnt[i];
S += cnt[i];
}
if(K == 2){
int last = 0;
int big = 9;
while(cnt[big] == 0) big--;
last = big;
cnt[big]--;
while(cnt[big] == 0) big--;
S--;
int l = 1, r = big;
bool left = false;
while(S--){
if(left){
while(cnt[l] == 0) l++;
cout << l;
cnt[l]--;
}
else{
while(cnt[r] == 0) r--;
cout << r;
cnt[r]--;
}
left = !left;
}
cout << last;
cout << '\n';
}
}
}
# | 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... |