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