# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
358075 | amunduzbaev | 저울 (IOI15_scales) | C++14 | 1 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#ifndef EVAL
#include "grader.cpp"
#endif
#include "bits/stdc++.h"
using namespace std;
#define sz(x) (int)x.size()
#define pb push_back
void init(int T) {
}
void orderCoins(){
vector<int> res = {1, 2, 3, 4, 5, 6}, ans;
vector<int>::iterator x;
assert(sz(res) == 6);
int a = res[0], b = res[1], c = res[2];
int mn = getLightest(a, b, c);
a = res[5], b = res[3], c = res[4];
int mm = getLightest(a, b, c);
int in = 0;
while(res[in] == mn && in < 3) in++;
int tm = mn;
mn = getLightest(mn, mm, res[in]);
ans.pb(mn);
for(x = res.begin(); x != res.end(); x++) if((*x) == mn) break;
res.erase(x);
if(mn == mm){
a = tm, b = res[sz(res)-1], c = res[sz(res)-2];
mn = getLightest(a, b, c);
ans.pb(mn);
for(x = res.begin(); x!=res.end(); x++) if((*x) == mn) break;
res.erase(x);
}else{
a = mm, b = res[0], c = res[1];
mn = getLightest(a, b, c);
ans.pb(mn);
for(x = res.begin(); x!=res.end(); x++) if((*x) == mn) break;
res.erase(x);
}
assert(sz(res) == 4);
a = res[0], b = res[1], c = res[2];
mn = getLightest(a, b, c);
in = 0;
while(res[in] == mn && in < 3) in++;
mn = getLightest(mn, res[in], res[3]);
ans.pb(mn);
for(x = res.begin(); x!=res.end(); x++) if((*x) == mn) break;
res.erase(x);
assert(sz(res) == 3);
a = res[0], b = res[1], c = res[2];
int tta, ttb;
mn = getLightest(a, b, c);
ans.pb(mn);
tta = mn;
mn = getMedian(a, b, c);
ans.pb(mn);
ttb = mn;
if(a != tta && a != ttb) ans.pb(a);
else if(b != tta && b != ttb) ans.pb(b);
else if(c != tta && c != ttb) ans.pb(c);
int w[6];
for(int i=0;i<6;i++) w[i] = ans[i];
answer(w);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |