# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
920658 | Macker | 게임 (IOI14_game) | C++17 | 1066 ms | 13144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(v) v.begin(), v.end()
vector<set<int>> adj;
set<int> active;
int n;
bool dfs(int a, int f){
bool ret = 0;
//if(adj[a].size() < active.size()){
for (auto &b : adj[a]) {
if(active.find(b) != active.end()){
active.erase(b);
if(b == f) return 1;
if(dfs(b, f)) return 1;
}
}
/*
}
else{
set<int> tmp = active;
for (auto &b : tmp) {
if(adj[a].find(b) != adj[a].end()){
active.erase(b);
if(b == f) return 1;
if(dfs(b, f)) return 1;
}
}
}
*/
return 0;
}
void initialize(int N) {
n = N;
adj.resize(n);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if(j != i) adj[i].insert(j);
}
}
}
int hasEdge(int u, int v) {
for (int i = 0; i < n; i++) {
active.insert(i);
}
adj[u].erase(v);
adj[v].erase(u);
if(dfs(u, v)) return 0;
else {
adj[u].insert(v);
adj[v].insert(u);
return 1;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |