結果
問題 | No.241 出席番号(1) |
ユーザー | suigingin |
提出日時 | 2015-07-10 23:16:16 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,138 bytes |
コンパイル時間 | 4,204 ms |
コンパイル使用メモリ | 82,664 KB |
実行使用メモリ | 54,428 KB |
最終ジャッジ日時 | 2024-07-08 02:16:13 |
合計ジャッジ時間 | 11,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 155 ms
53,976 KB |
testcase_06 | RE | - |
testcase_07 | AC | 144 ms
53,780 KB |
testcase_08 | RE | - |
testcase_09 | AC | 147 ms
53,852 KB |
testcase_10 | AC | 145 ms
54,200 KB |
testcase_11 | AC | 143 ms
54,096 KB |
testcase_12 | AC | 141 ms
53,976 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 125 ms
54,008 KB |
testcase_17 | AC | 144 ms
54,284 KB |
testcase_18 | AC | 149 ms
54,160 KB |
testcase_19 | AC | 146 ms
53,912 KB |
testcase_20 | AC | 146 ms
53,960 KB |
testcase_21 | AC | 142 ms
54,264 KB |
testcase_22 | AC | 146 ms
54,224 KB |
testcase_23 | AC | 149 ms
54,280 KB |
testcase_24 | AC | 149 ms
53,840 KB |
testcase_25 | RE | - |
testcase_26 | AC | 147 ms
54,072 KB |
testcase_27 | AC | 152 ms
54,028 KB |
testcase_28 | AC | 149 ms
54,104 KB |
testcase_29 | AC | 152 ms
54,048 KB |
testcase_30 | AC | 145 ms
54,248 KB |
testcase_31 | AC | 147 ms
53,976 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main_origin { MyScanner sc = new MyScanner(); Scanner sc2 = new Scanner(System.in); long start = System.currentTimeMillis(); long fin = System.currentTimeMillis(); final int MOD = 1000000007; int[] dx = { 1, 0, 0, -1 }; int[] dy = { 0, 1, -1, 0 }; void run() { int N = sc.nextInt(); int[] A = sc.nextIntArray(N); boolean[] use = new boolean[N]; StringBuilder sb = new StringBuilder(); for (int i = 0; i < N; i++) { int out = A[i]; Pair[] p = new Pair[N]; for (int j = 0; j < N; j++) p[j] = new Pair(0, j); for (int j = i + 1; j < N; j++) p[A[j]].cnt++; Arrays.sort(p); boolean fix = false; for (int j = N - 1; j >= 0; j--) { if (out != p[j].dislike && !use[p[j].dislike]) { use[p[j].dislike] = true; sb.append(p[j].dislike+"\n"); fix = true; break; } } if (!fix) { System.out.println(-1); return; } } System.out.print(sb); } class Pair implements Comparable<Pair> { int cnt; int dislike; public Pair() { super(); this.cnt = 0; this.dislike = 0; } public Pair(int cnt, int dislike) { super(); this.cnt = cnt; this.dislike = dislike; } @Override public int compareTo(Pair arg0) { if (this.cnt == arg0.cnt) { return this.dislike - arg0.dislike; } return this.cnt - arg0.cnt; } void show() { System.out.println("first = " + this.cnt + " second = " + this.dislike); } } public static void main(String[] args) { new Main_origin().run(); } void debug(Object... o) { System.out.println(Arrays.deepToString(o)); } void debug2(int[][] array) { for (int i = 0; i < array.length; i++) { for (int j = 0; j < array[i].length; j++) { System.out.print(array[i][j]); } System.out.println(); } } boolean inner(int h, int w, int limH, int limW) { return 0 <= h && h < limH && 0 <= w && w < limW; } void swap(int[] x, int a, int b) { int tmp = x[a]; x[a] = x[b]; x[b] = tmp; } // find minimum i (a[i] >= border) int lower_bound(int a[], int border) { int l = -1; int r = a.length; while (r - l > 1) { int mid = (l + r) / 2; if (border <= a[mid]) { r = mid; } else { l = mid; } } // r = l + 1 return r; } boolean palindrome(String s) { for (int i = 0; i < s.length() / 2; i++) { if (s.charAt(i) != s.charAt(s.length() - 1 - i)) { return false; } } return true; } class MyScanner { int nextInt() { try { int c = System.in.read(); while (c != '-' && (c < '0' || '9' < c)) c = System.in.read(); if (c == '-') return -nextInt(); int res = 0; do { res *= 10; res += c - '0'; c = System.in.read(); } while ('0' <= c && c <= '9'); return res; } catch (Exception e) { return -1; } } double nextDouble() { return Double.parseDouble(next()); } long nextLong() { return Long.parseLong(next()); } String next() { try { StringBuilder res = new StringBuilder(""); int c = System.in.read(); while (Character.isWhitespace(c)) c = System.in.read(); do { res.append((char) c); } while (!Character.isWhitespace(c = System.in.read())); return res.toString(); } catch (Exception e) { return null; } } int[] nextIntArray(int n) { int[] in = new int[n]; for (int i = 0; i < n; i++) { in[i] = nextInt(); } return in; } int[][] nextInt2dArray(int n, int m) { int[][] in = new int[n][m]; for (int i = 0; i < n; i++) { in[i] = nextIntArray(m); } return in; } double[] nextDoubleArray(int n) { double[] in = new double[n]; for (int i = 0; i < n; i++) { in[i] = nextDouble(); } return in; } long[] nextLongArray(int n) { long[] in = new long[n]; for (int i = 0; i < n; i++) { in[i] = nextLong(); } return in; } char[][] nextCharField(int n, int m) { char[][] in = new char[n][m]; for (int i = 0; i < n; i++) { String s = sc.next(); for (int j = 0; j < m; j++) { in[i][j] = s.charAt(j); } } return in; } } }