# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
379875 | knightron0 | Cluedo (IOI10_cluedo) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cluedo.h"
using namespace std;
void Solve(){
bool a[7], b[11], c[7];
for(int i= 1;i<=6;i++) a[i] =1;
for(int i= 1;i<=10;i++) b[i] =1;
for(int i= 1;i<=6;i++) c[i] =1;
for(int i= 1;i<=20;i++){
int m = 0, l = 0, w = 0;
for(int j = 1;j<=6;j++){
if(a[j] == 1) {
m = j;
break;
}
}
for(int j = 1;j<=10;j++){
if(b[j] == 1) {
l = j;
break;
}
}
for(int j = 1;j<=6;j++){
if(c[j] == 1) {
w = j;
break;
}
}
int res = Theory(m, l, w);
if(res == 0){
return;
}
if(res == 1){
a[m] = 0;
} else if(res == 2) {
b[l] = 0;
} else {
c[w] = 0;
}
}
}