이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "grader.h"
#include "cluedo.h"
void Solve(){
bool m[7],l[11],w[7];
memset(m,false,sizeof m);
memset(l,false,sizeof l);
memset(w,false,sizeof w);
for(int i=1;i<=6;i++){
if(m[i]) continue;
for(int j=1;j<=10;j++){
if(l[j]) continue;
for(int k=1;k<=6;k++){
if(w[k]) continue;
int n=Theory(i,j,k);
if(n==0) return;
else if(n==1) m[i]=true;
else if(n==2) l[j]=true;
else if(n==3) w[k]=true;
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |