제출 #301704

#제출 시각아이디문제언어결과실행 시간메모리
301704ijxjdjd카니발 티켓 (IOI20_tickets)Java
76 / 100
3078 ms226556 KiB
import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; public class tickets { long find_maximum(int K, int[][] x) { int N = x.length; int M = x[0].length; int[][] S = new int[N*K][2]; for (int i = 0; i < N; i++) { for (int j = 0; j < K; j++) { S[i*K + j][0] = i; S[i*K + j][1] = j; } } Arrays.sort(S, new Comparator<int[]>() { @Override public int compare(int[] ints, int[] t1) { return -Integer.compare(-x[ints[0]][ints[1]] - x[ints[0]][M - K + ints[1]], -x[t1[0]][t1[1]] - x[t1[0]][M-K+t1[1]]); } }); long res = 0; ArrayList<Integer>[] low = new ArrayList[N]; int[] count = new int[N]; for (int i = 0; i < S.length/2; i++) { count[S[i][0]]++; } int[][] ans = new int[N][M]; ArrayList<int[]>[] rounds = new ArrayList[K]; for (int j = 0; j < K; j++) { rounds[j] = new ArrayList<>(); } int k = 0; for (int id = 0; id < N; id++) { int bef = k; if (count[id] == 0) { for (int c = 1; c <= K; c++) { rounds[k].add(new int[]{id, M - c}); res += x[id][M - c]; k++; if (k == K) { k = 0; } } } else { for (int a = 0 ; a < count[id]; a++) { rounds[k].add(new int[]{id, a}); res -= x[id][a]; k++; if (k == K) { k = 0; } } int c = 1; for (int i = k; i != bef; ) { res += x[id][M - c]; rounds[i].add(new int[]{id, M - c}); c++; i++; if (i == K) { i = 0; } } } } for (int j = 0; j < N; j++) { Arrays.fill(ans[j], -1); } for (int j = 0; j < K; j++) { for (int[] s : rounds[j]) { ans[s[0]][s[1]] = j; } } grader.allocate_tickets(ans); return res; } }

컴파일 시 표준 에러 (stderr) 메시지

Note: tickets.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...