# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335482 | KWang31 | 즐거운 행로 (APIO20_fun) | Java | 82 ms | 8556 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import java.util.*;
public class fun {
public static class Pair implements Comparable<Pair>{
int vtx; int val;
public Pair(int a, int b){
this.vtx=a; this.val=b;
}
public int compareTo(Pair other){
if(this.val>other.val)return -1;
if(this.val<other.val)return 1;
if(this.vtx<other.vtx)return -1;
return 1;
}
}
public static int[] createFunTour(int N, int Q){
if(N==2){
int[] a=new int[2]; a[1]=1; return a;
}
int min=N; int ind=0; int sz=0;
for (int i = 1; i < N; i++) {
sz=grader.attractionsBehind(0,i);
if(2*sz>N && sz<min){
min=sz; ind=i;
}
}
int c=0;
if(min!=N){
c=ind;//Centroid
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |