# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
42215 | MatheusLealV | 저울 (IOI15_scales) | C++14 | 2 ms | 800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "scales.h"
#define f first
#define s second
using namespace std;
typedef pair<int, int> pii;
int n = 6, v[10], ord[10];
int sobra(int a, int b, int c, int x, int y)
{
if(x == a && y == b) return c;
if(y == a && x == b) return c;
if(x == a && y == c) return b;
if(y == a && x == c) return b;
if(x == b && y == c) return a;
if(y == b && x == c) return a;
}
void orderCoins()
{
int ans[6], a[4], b[4];
a[1] = getLightest(1, 2, 3), a[2] = getMedian(1, 2, 3), a[3] = sobra(1, 2, 3, a[1], a[2]);
b[1] = getLightest(4, 5, 6), b[2] = getMedian(4, 5, 6), b[3] = sobra(4, 5, 6, b[1], b[2]);
int pl = 1, pr = 1;
for(int i = 0; i < 6; i++)
{
if(!i)
{
ans[0] = getLightest(a[1], b[1], a[2]);
if(ans[0] == a[1]) pl ++;
else pr ++;
}
else
{
if(pl <= 3 && pr <= 3)
{
ans[i] = getMedian(ans[0], a[pl], b[pr]);
if(ans[i] == a[pl]) pl ++;
else pr ++;
}
else if(pl > 3) ans[i] = b[pr], pr ++;
else ans[i] = a[pl], pl ++;
}
}
answer(ans);
}
void init(int T)
{
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |