이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
vector<int> stA, stB, stC;
for(int i=1; i<=6; i++) stA.push_back(i);
for(int i=1; i<=10; i++) stB.push_back(i);
for(int i=1; i<=6; i++) stC.push_back(i);
while(1){
int a = stA.back(), b = stB.back(), c = stC.back();
int v = Theory(a, b, c);
if(!v) return;
if(v==1) stA.pop_back();
if(v==2) stB.pop_back();
if(v==3) stC.pop_back();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |