# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1121092 | SalihSahin | Scales (IOI15_scales) | C++14 | 2 ms | 508 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 <bits/stdc++.h>
#define pb push_back
using namespace std;
#include "scales.h"
void init(int T) {
/* ... */
}
void orderCoins() {
int W[6];
int x = getLightest(1, 2, 3);
vector<int> rem;
for(int i = 1; i <= 3; i++){
if(i != x) rem.pb(i);
}
int y = getHeaviest(rem[0], rem[1], 4);
vector<int> rem2;
for(int i = 1; i <= 4; i++){
if(i != y && i != x) rem2.pb(i);
}
int z = getMedian(rem2[0], rem2[1], x);
vector<int> l = {-1, -1, -1, y};
if(z == x){
l[1] = x;
l[2] = rem2[0];
l[0] = rem2[1];
}
else if(z == rem2[0]){
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |