이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define mp make_pair
#define pb push_back
#define vll vector<ll>
#define endl "\n"
#define pll pair<ll,ll>
#define all(x) (x).begin() , (x).end()
#define f first
#define s second
using namespace std;
const ll N =(2e5+5);
const ll MOD = 998244353;
const ll INF = 1e16;
const ll LOG = 25;
void Solve(){
bool a[7],b[11],c[7];
for(int i =1;i<=6;i++)a[i]=false;
for(int i =1;i<=10;i++)b[i]=false;
for(int i =1;i<=6;i++)c[i]=false;
for(ll m = 1;m<=6;m++){
for(ll l = 1;l<=10;l++){
for(ll w = 1;w<=6;w++){
if(a[m] || b[l] || c[w]) continue;
ll x = Theory(m,l,w);
if(x == 0) return ;
if(x == 1) a[m] = true;
if(x == 2) b[l] = true;
if(x == 3) c[w] = true;
}
}
}
// for(ll m = 1;m<=6;m++){
// for(ll l = 1;l<=10;l++){
// for(ll w = 1;w<=6;w++){
// if(a[m] || b[l] || c[w]) continue;
// ll x = Theory(m,l,w);
// if(x == 0) return ;
// }
// }
// }
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |