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