# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
765642 | boyliguanhan | 저울 (IOI15_scales) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
int lightest(int sz, int x[], int f) {
if(sz==5) {
return getLightest(x[0],x[1],getLightest(x[2],x[3],x[4]));
}
if(sz==3) {
return getLightest(x[0],x[1],x[2]);
}
if(sz==1) {
return x[0];
}
if(sz==2) {
return getMedian(x[0],x[1],f);
}
if(sz==4) {
return getLightest(x[0],x[1],getMedian(x[2],x[3],f));
}
int a = getLightest(1,2,3);
int b = getLightest(4,5,6);
if(a==3) {
return getLightest(a,b,2);
} else {
return getLightest(a,b,3);
}
}
void remove(int arr[], int val) {
int x = 0;
while(arr[x]!=val) x++;
while(x<5) {
arr[x] = arr[x+1];
x++;
}
}
void init(int T) {}
void orderCoins() {
int pos[6] = {1,2,3,4,5,6}, w[6] = {0,0,0,0,0,0};
int f = w[0] = lightest(6,pos,0);
remove(pos,f);
for(int i = 1; i < 6; i++) {
remove(pos, w[i] = lightest(6-i,pos,f));
}
answer(w);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |