# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
604358 | 8e7 | 저울 (IOI15_scales) | C++17 | 1 ms | 272 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Challenge: Accepted
#include <bits/stdc++.h>
using namespace std;
#ifdef zisk
void debug(){cout << endl;}
template<class T, class ... U> void debug(T a, U ... b){cout << a << " ", debug(b...);}
template<class T> void pary(T l, T r){
while (l != r) cout << *l << " ", l++;
cout << endl;
}
#else
#define debug(...) 0
#define pary(...) 0
#endif
#define ll long long
#define maxn 100005
#define pii pair<int, int>
#define ff first
#define ss second
#include "scales.h"
void init(int T) {
/* ... */
srand(time(NULL));
}
void orderCoins() {
int n = 3;
int ini[6] = {1, 2, 3, 4, 5, 6};
random_shuffle(ini, ini + 6);
int a[3] = {ini[0], ini[1], ini[2]}, b[3] = {ini[3], ini[4], ini[5]};
int ret[6];
int ind = find(a, a + n, getLightest(a[0], a[1], a[2])) - a;
swap(a[ind], a[0]);
ind = find(b, b + n, getLightest(b[0], b[1], b[2])) - b;
swap(b[ind], b[0]);
//a[0] < a[1], a[2], b[0] < b[1], b[2];
int tmp = getHeaviest(a[0], b[1], b[2]);
if (tmp == a[0]) {
ind = find(b, b + n, getHeaviest(b[0], b[1], b[2])) - b;
swap(b[ind], b[2]);
ind = find(a, a + n, getHeaviest(a[0], a[1], a[2])) - a;
swap(a[ind], a[2]);
int r[6] = {b[0], b[1], b[2], a[0], a[1], a[2]};
answer(r);
return;
} else {
if (tmp == b[1]) swap(b[1], b[2]);
}
tmp = getHeaviest(b[0], a[1], a[2]);
if (tmp == b[0]) {
ind = find(b, b + n, getHeaviest(b[0], b[1], b[2])) - b;
swap(b[ind], b[2]);
ind = find(a, a + n, getHeaviest(a[0], a[1], a[2])) - a;
swap(a[ind], a[2]);
int r[6] = {a[0], a[1], a[2], b[0], b[1], b[2]};
answer(r);
return;
} else {
if (tmp == a[1]) swap(a[1], a[2]);
}
int pos[3] = {0, 0, 0};
ind = getNextLightest(a[0], a[1], a[2], b[1]);
vector<int> check;
if (ind == a[0]) {
if (getHeaviest(a[0], a[2], b[1]) == b[1]) {
pos[1] = 3;
pos[2] = 3;
check.push_back(0);
} else {
pos[0] = 0;
pos[1] = 0;
check.push_back(2);
}
} else {
if (ind == a[1]) pos[1] = 1;
else pos[1] = 2;
check.push_back(0), check.push_back(2);
}
for (int i:check) {
ind = getNextLightest(a[0], a[1], a[2], b[i]);
if (ind == a[1]) {
pos[i] = 1;
} else if (ind == a[2]) {
pos[i] = 2;
} else {
if (i == 0) pos[i] = 0;
else if (i == 2) pos[i] = 3;
}
}
ind = 0;
int cur = 0;
for (int i = 0;i < 3;i++) {
while (ind < 3 && pos[ind] <= i) ret[cur++] = b[ind++];
ret[cur++] = a[i];
}
while (ind < 3) ret[cur++] = b[ind++];
answer(ret);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |