# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
387468 | AmineTrabelsi | 저울 (IOI15_scales) | C++17 | 2 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "scales.h"
using namespace std;
void init(int T) {
/*...*/
}
void orderCoins() {
int W[] = {1,2,3,4,5,6};
int light = 1;
for(int i=2;i<6;i++){
if(light != i)
light = getLightest(light,i,i+1);
}
W[0] = light;
set<int> left = {1,2,3,4,5,6};
left.erase(light);
for(int i=1;i<4;i++){
light = *(left.begin());
for(auto it = (left.begin());it != left.end();it++){
auto it2 = it;++it2;
if(it2 == left.end())break;
auto it3 = it2;++it3;
if(it3 == left.end())break;
if(light != *it2)
light = getLightest(light,*it2,*it3);
}
W[i] = light;
left.erase(light);
}
int x = *(left.begin()),y = *(++left.begin());
W[4] = getMedian(W[3],x,y);
left.erase(W[4]);
W[5] = *(left.begin());
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |