# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
18698 | mindol | 게임 (IOI14_game) | C++14 | 3 ms | 19128 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<set>
int n;
std::set<int> s[1500];
int e[1500][1500];
void initialize(int N)
{
n=N;
for(int i=0;i<N;i++)
for(int j=0;j<N;j++)
if(i!=j) s[i].insert(j);
}
int hasEdge(int a,int b)
{
if(s[a].find(b)==s[a].end()) return e[a][b];
s[a].erase(b); s[b].erase(a);
while(s[a].size()==1)
{
int next=*s[a].begin();
e[a][next]=e[next][a]=1;
s[a].erase(next); s[next].erase(a);
a=next;
}
while(s[b].size()==1)
{
int next=*s[b].begin();
e[b][next]=e[next][b]=1;
s[b].erase(next); s[next].erase(b);
b=next;
}
return 0;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |