# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1121010 | SalihSahin | 저울 (IOI15_scales) | C++14 | 1 ms | 592 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
#include "scales.h"
void init(int T) {
/* ... */
}
void orderCoins() {
int W[6];
int x = getLightest(1, 2, 3);
int y = getHeaviest(1, 2, 3);
vector<int> l = {x, 6 - (x + y), y};
x = getLightest(4, 5, 6);
y = getHeaviest(4, 5, 6);
vector<int> r = {x, 15 - (x + y), y};
int other = 1;
while(other == l[2] || other == r[2]) other++;
int mx = getHeaviest(l[2], r[2], other);
int li = 0, ri = 0;
for(int i = 0; i < 5; i++){
if(li == 3 || mx == l[li]){
W[i] = r[ri];
ri++;
continue;
}
if(ri == 3 || mx == r[ri]){
W[i] = l[li];
li++;
continue;
}
int now = getLightest(l[li], r[ri], mx);
W[i] = now;
if(now == l[li]){
li++;
}
else ri++;
}
W[5] = mx;
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |