# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1013230 | d4xn | 저울 (IOI15_scales) | C++17 | 1 ms | 360 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 6;
mt19937 rng(time(nullptr) + 69);
int c[N], ans[N];
void init(int T) {
for (int i = 0; i < N; i++) {
c[i] = i+1;
}
shuffle(c, c+N, rng);
}
void orderCoins() {
//shuffle(c, c+N, rng);
vector<int> L;
int x = getLightest(c[0], c[1], c[2]);
int z = getHeaviest(c[0], c[1], c[2]);
int y = c[0];
if (y == x || y == z) y = c[1];
if (y == x || y == z) y = c[2];
L.push_back(x);
L.push_back(y);
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |