# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
520289 | silverfish | Scales (IOI15_scales) | C++17 | 1 ms | 204 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
void init(int T) {
return;
}
void orderCoins() {
int w[] = {1, 2, 3, 4, 5, 6};
vector<int> lst = {0, 3};
for(int i : lst){
int v = getLightest(w[i], w[i+1], w[i+2]);
for(int j = i; j <= i+2; ++j) if(v == w[j]) swap(w[i], w[j]);
v = getMedian(w[i], w[i+1], w[i+2]);
for(int j = i; j <= i+2; ++j) if(v == w[j]) swap(w[i+1], w[j]);
}
vector<int> before, after[6];
for(int i = 0; i < 3; ++i){
int c = getNextLightest(w[3], w[4], w[5], w[i]);
if(c == w[3]){
if(getLightest(w[i], w[3], w[4]) == w[i]) before.pb(w[i]);
else after[5].pb(w[i]);
}else if(c == w[4]) after[3].pb(w[i]);
else after[4].pb(w[i]);
}
vector<int> ans;
for(int i : before) ans.pb(i);
ans.pb(w[3]);
for(int i : after[3]) ans.pb(i);
ans.pb(w[4]);
for(int i : after[4]) ans.pb(i);
ans.pb(w[5]);
for(int i : after[5]) ans.pb(i);
for(int i = 0; i < 6; ++i){
w[i] = ans[i];
}
answer(w);
return;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |