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