# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
721005 | dungnguyenn_05 | Cluedo (IOI10_cluedo) | C++17 | 3066 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
bool a[20],b[20],c[20];
void Solve()
{
while(1)
{
bool ok=0;
for(int i1=1;i1<7;i1++)
if(!a[i1])
{
for(int i2=1;i2<11;i2++)
if(!b[i2])
{
for(int i3=1;i3<7;i3++)
if(!c[i3])
{
int val=Theory(i1,i2,i3);
if(!val)
{
// Solve();
return;
}
if(val==1)
a[i1]=1;
if(val==2)
b[i2]=1;
if(val==3)
c[i3]=1;
ok=1;
break;
}
if(ok) break;
}
if(ok) break;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |