# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
60758 | istlemin | 저울 (IOI15_scales) | C++14 | 4 ms | 748 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i = a; i<int(b);++i)
#define all(v) v.begin(),v.end()
#define sz(v) v.size()
#define trav(a,c) for(auto a: c)
typedef long long ll;
typedef vector<ll> vi;
typedef pair<ll,ll> pii;
vector<tuple<ll,ll,ll,ll> > heaviestOps;
ll heaviest(ll a,ll b,ll c){
if(a==b||b==c||c==a) return -1;
ll res = getHeaviest(a+1,b+1,c+1)-1;
heaviestOps.emplace_back(a,b,c,res);
return res;
}
vector<tuple<ll,ll,ll,ll> > lightestOps;
ll lightest(ll a,ll b,ll c){
if(a==b||b==c||c==a) return -1;
ll res = getLightest(a+1,b+1,c+1)-1;
lightestOps.emplace_back(a,b,c,res);
return res;
}
void init(int T) {
}
void orderCoins() {
heaviestOps.clear();
lightestOps.clear();
rep(i,0,100){
heaviest(rand()%6,rand()%6,rand()%6);
}
rep(i,0,100){
lightest(rand()%6,rand()%6,rand()%6);
}
vi W = {0,1,2,3,4,5};
do{
bool fail = false;
rep(i,0,heaviestOps.size()){
ll a,b,c,res;
tie(a,b,c,res) = heaviestOps[i];
if(max(W[a],max(W[b],W[c]))!=W[res])
fail = true;
}
rep(i,0,lightestOps.size()){
ll a,b,c,res;
tie(a,b,c,res) = lightestOps[i];
if(min(W[a],min(W[b],W[c]))!=W[res])
fail = true;
}
if(!fail) {
int ans[6];
rep(i,0,6) ans[W[i]] = i;
rep(i,0,6){
cout<<ans[i]+1<<" ";
}
cout<<endl;
answer(ans);
return;
}
} while(next_permutation(all(W)));
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |