# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
138871 | dsjong | 저울 (IOI15_scales) | C++14 | 3 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
int ans[6];
void init(int T){
return;
}
void orderCoins() {
int A=getLightest(1,2,3);
int B=getLightest(4,5,6);
int C;
if(A==1) C=getLightest(A,B,2);
else C=getLightest(A,B,1);
ans[0]=C;
vector<int>v;
for(int i=1;i<=3;i++){
if(C!=i) v.push_back(i);
}
int X=getHeaviest(4,5,6);
X=getHeaviest(X,v[0],v[1]);
ans[5]=X;
v.clear();
for(int i=1;i<=6;i++){
if(i!=X&&i!=A&&i!=B){
v.push_back(i);
}
}
int Y=getHeaviest(v[0],v[1],v[2]);
ans[4]=Y;
int M,N;
v.clear();
for(int i=1;i<=6;i++){
if(i!=X&&i!=Y&&i!=C){
v.push_back(i);
}
}
ans[1]=getLightest(v[0],v[1],v[2]);
ans[3]=getHeaviest(v[0],v[1],v[2]);
for(int i=1;i<=6;i++){
if(i!=ans[1]&&i!=ans[3]&&i!=X&&i!=Y&&i!=C){
ans[2]=i;
}
}
answer(ans);
return;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |