이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///~~~LOTA~~~///
#include "coprobber.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define append push_back
#define add insert
#define nl "\n"
#define ff first
#define ss second
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL)
#define N 500
int r;
int dept[N];
vector<int> g[N];
void dfs(int v){
for(auto& i:g[v]){
if(dept[i])
r=max(r,dept[v]-dept[i]);
else{
dept[i]=dept[v]+1;
dfs(i);
}
}
}
int start(int n, bool a[N][N]){
for(int i=0;i<n;i++)
for(int j=r=0;j<n;j++)
if(a[i][j]) g[i].append(j);
dept[0]=1;
dfs(0);
if(r>3) return -1;
return 0;
}
int nextMove(int v){
return -1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |