# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
791785 | Josia | 저울 (IOI15_scales) | C++17 | 1 ms | 304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
using namespace std;
#include <bits/stdc++.h>
void init(int T) {
/* ... */
}
void orderCoins() {
int a1 = getLightest(1, 2, 3);
int a2 = getMedian(1, 2, 3);
set<int> a = {1,2,3};
a.erase(a1);
a.erase(a2);
int a3 = *a.begin();
int b1 = getLightest(4,5,6);
int b2 = getMedian(4,5,6);
set<int> b = {4,5,6};
b.erase(b1);
b.erase(b2);
int b3 = *b.begin();
deque<int> A, B;
A = {a1, a2, a3};
B = {b1, b2, b3};
vector<int> res;
for (int i = 0; i<2; i++) {
int next = getNextLightest(B[0], B[1], A[1], A[0]);
if (next == B[0]) {
res.push_back(A[0]);
res.push_back(B[0]);
} else {
res.push_back(B[0]);
res.push_back(A[0]);
}
A.pop_front();
B.pop_front();
}
res.push_back(getMedian(res[0], A[0], B[0]));
set<int> aaa = {1,2,3,4,5,6};
for (int i: res) aaa.erase(i);
res.push_back(*aaa.begin());
int W[] = {1,2,3,4,5,6};
for (int i = 0; i<6; i++) {
W[i] = res[i];
// cerr << res[i] << " ";
}
// cerr << "\n";
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |