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