# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
60705 | dukati8 | 저울 (IOI15_scales) | C++14 | 4 ms | 620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a; i<int(b); i++)
int t;
void init(int T) {
t=T;
}
void orderCoins() {
set<int> leftset={1,2,3,4,5,6};
int W[6];
int cand1,cand2;
cand1=getLightest(1,2,3);
cand2=getLightest(4,5,6);
if (1!=cand1) W[0]=getLightest(cand1,cand2,1);
else W[0]=getLightest(cand1,cand2,2);
leftset.erase(W[0]);
vector<int> left;
for (auto a:leftset) left.push_back(a);
cand1=getLightest(left[0],left[1],left[2]);
W[1]=getLightest(cand1,left[3],left[4]);
leftset.erase(W[1]);
left.clear();
for (auto a:leftset) left.push_back(a);
cand1=getLightest(left[0],left[1],left[2]);
W[2]=getMedian(W[0],cand1,left[3]);
leftset.erase(W[2]);
left.clear();
for (auto a:leftset) left.push_back(a);
W[3]=getLightest(left[0],left[1],left[2]);
W[4]=getMedian(left[0],left[1],left[2]);
W[5]=21-W[0]-W[1]-W[2]-W[3]-W[4];
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |