이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> x[4];
inline void init() {
for (int i = 1; i <= 3; ++i) {
x[i].clear();
for (int j = 1; j <= 10; ++j) {
if (j > 6 && i != 2) break;
x[i].push_back(j);
}
}
}
void Solve(){
srand(time(NULL));
init();
int g[4];
g[1] = 1 + (rand() % 6), g[2] = 1 + (rand() % 10), g[3] = 1 + (rand() % 6);
while (true) {
int y = Theory(g[1], g[2], g[3]);
printf("%d %d %d %d\n", g[1], g[2], g[3], y); fflush(stdout);
if (y == 0) break;
x[y].erase(find(x[y].begin(), x[y].end(), g[y]));
g[y] = x[y][rand() % (x[y].size())];
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |