# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
917938 | PM1 | Triangles (CEOI18_tri) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "trilib.h"
using namespace std;
const int mxn=5e2+5;
int n,mark[mxn],ans=1e9;
int main(){
n=get_n();
for(int p=1;p!=n;p++){
int res=0
while(!mark[p]){
mark[p]=1;
res++;
int x=(p==1)?2:1;
for(int i=1;i<=n;i++){
if(i!=p && i!=x){
bool y=is_clockwise(p,x,i);
if(!y)
x=i;
}
}
p=x;
}
memset(mark,0,sizeof mark);
ans=min(ans,res);
}
give_answer(ans);
return 0;
}