# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
558091 | emuyumi | 저울 (IOI15_scales) | C++17 | 1 ms | 308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
using namespace std;
void init(int T) {
}
const vector<tuple<int, int, int>> cliques = {
{1, 3, 5}, {1, 3, 6},
{1, 4, 5}, {1, 4, 6},
{2, 3, 5}, {2, 3, 6},
{2, 4, 5}, {2, 4, 6}
};
void orderCoins() {
vector<vector<int>> adj(7);
vector<int> deg(7);
for (auto [a, b, c] : cliques){
int lo = getLightest(a, b, c);
int hi = getHeaviest(a, b, c);
int mi = a ^ b ^ c ^ lo ^ hi;
adj[lo].push_back(mi); deg[mi]++;
adj[lo].push_back(hi); deg[hi]++;
adj[mi].push_back(hi); deg[hi]++;
}
queue<int> q;
for (int i = 1; i <= 6; ++i){
if (!deg[i]) q.push(i);
}
vector<int> ord;
while (!q.empty()){
int v = q.front(); q.pop();
ord.push_back(v);
for (int to : adj[v]){
deg[to]--;
if (!deg[to]) q.push(to);
}
}
answer(ord.data());
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |