# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1068475 | ArthuroWich | 저울 (IOI15_scales) | C++17 | 1 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include<bits/stdc++.h>
using namespace std;
void init(int T) {
}
void orderCoins() {
int W[6];
vector<int> a = {1, 2, 3, 4, 5, 6};
int j = 0;
while(a.size() != 3) {
int sh = getLightest(a[0], a[1], a[2]);
if (a.size() == 4) {
if (sh != a[0]) {
sh = getLightest(sh, a[0], a[3]);
} else {
sh = getLightest(sh, a[1], a[3]);
}
} else if (a.size() == 5) {
sh = getLightest(sh, a[3], a[4]);
} else if (a.size() == 6) {
sh = getLightest(sh, a[3], a[4]);
if (sh != a[0]) {
sh = getLightest(sh, a[0], a[5]);
} else {
sh = getLightest(sh, a[1], a[5]);
}
}
W[j] = sh;
j++;
a.erase(find(a.begin(), a.end(), sh));
}
W[j] = getLightest(a[0], a[1], a[2]);
j++;
W[j] = getMedian(a[0], a[1], a[2]);
j++;
a.erase(find(a.begin(), a.end(), W[j-1]));
a.erase(find(a.begin(), a.end(), W[j-2]));
W[j] = a[0];
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |