이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "trilib.h"
#include <bits/stdc++.h>
using namespace std;
int n;
set<int> s;
int go(int x){
int y = n;
if(y == n)
y = 1;
for(int j=1;j<=n;j++){
if(j == x || j == y)
continue;
if(x < 1 || x>n || y<1 || y>n )
while(1);
if(is_clockwise(x,y,j))
y = j;
}
return y;
}
int main(){
s.clear();
n = get_n();
for(int i=1;i<=n;i++){
int neighbour = go(i);
if(s.count(neighbour)){
give_answer(n-1);
return 0;
}
s.insert(neighbour);
}
give_answer(n);
}
/*
6
1 1
4 3
2 2
1 4
5 1
3 2
*/
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |