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