# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
268595 | A02 | 저울 (IOI15_scales) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <vector>
#include <set>
#include <algorithm>
#include <utility>
#include <iostream>
using namespace std;
void init(int T) {
/* ... */
return;
}
void erasev(vector<int> &a, int b){
for (int i = 0; i < a.size(); i++){
if (a[i] == b){
a.erase(a.begin() + i);
}
}
}
void orderCoins() {
/* ... */
int W[] = {1, 2, 3, 4, 5, 6};
int l1 = getLightest(1, 2, 3);
int l2 = getLightest(4, 5, 6);
int s = 1;
if (1 == l1){
s = 2;
}
int l = getLightest(l1, l2, s);
vector<int> remaining;
for (int i = 1; i <= 6; i++){
if (i != l){
remaining.push_back(i);
}
}
l1 = getNextLightest(remaining[0], remaining[1], remaining[2], l);
l2 = getNextLightest(remaining[4], remaining[3], l1, l);
W[0] = l;
W[1] = l2;
erasev(remaining, l2);
int l3 = getNextLightest(remaining[0], remaining[1], remaining[2], l2);;
int l4 = getNextLightest(remaining[3], l, l3, l2);
W[2] = l4;
erasev(remaining, l4);
int l5 = getNextLightest(remaining[0], remaining[1], remaining[2], l4);
W[3] = l5;
W[4] = getMedian(remaining[0], remaining[1], remaining[2]);
erasev(remaining, W[3]);
erasev(remaining, W[4]);
W[5] = remaining[0];
//cout << W[0] << W[1] << W[2] << W[3] << W[4] << W[5] << endl;
answer(W);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |