# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1077999 | mariza | 저울 (IOI15_scales) | C++14 | 1 ms | 436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
map<tuple<ll,ll,ll>,ll> m;
ll ask(ll a, ll b, ll c){
if(m.find({a,b,c})==m.end()) m[{a,b,c}]=getLightest(a,b,c);
return m[{a,b,c}];
}
void init(int T) {
}
void orderCoins() {
m.clear();
set<ll> x;
for(ll i=1; i<=6; i++){
x.insert(i);
}
int ans[6];
ll z=0;
for(ll i=0; i<3; i++){
set<ll> y;
for(ll j=1; j<=6; j++){
if(x.find(j)!=x.end()) y.insert(j);
}
while(y.size()>1){
if(y.size()==2) y.insert(z);
ll a=*y.begin(); y.erase(a);
ll b=*y.begin(); y.erase(b);
ll c=*y.begin(); y.erase(c);
// cout<<i<<" "<<y.size()<<" "<<z<<endl;
y.insert(ask(a,b,c));
if(a!=*y.begin()) z=a;
else z=b;
}
ans[i]=*y.begin();
x.erase(*y.begin());
}
ll a=*x.begin(); x.erase(a);
ll b=*x.begin(); x.erase(b);
ll c=*x.begin(); x.erase(c);
ans[3]=ask(a,b,c);
ans[4]=getMedian(a,b,c);
if(min(ans[3],ans[4])==b) ans[5]=a;
else if(max(ans[3],ans[4])==b) ans[5]=c;
else ans[5]=b;
answer(ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |