結果
問題 | No.133 カードゲーム |
ユーザー | Takahiro Ishikawa |
提出日時 | 2018-10-08 19:38:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,066 bytes |
コンパイル時間 | 3,173 ms |
コンパイル使用メモリ | 79,164 KB |
実行使用メモリ | 41,708 KB |
最終ジャッジ日時 | 2024-10-12 15:28:27 |
合計ジャッジ時間 | 7,390 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,356 KB |
testcase_01 | AC | 135 ms
41,496 KB |
testcase_02 | AC | 133 ms
41,296 KB |
testcase_03 | AC | 135 ms
41,308 KB |
testcase_04 | WA | - |
testcase_05 | AC | 135 ms
41,488 KB |
testcase_06 | AC | 134 ms
41,196 KB |
testcase_07 | AC | 130 ms
41,176 KB |
testcase_08 | AC | 128 ms
41,052 KB |
testcase_09 | WA | - |
testcase_10 | AC | 134 ms
41,668 KB |
testcase_11 | AC | 134 ms
41,276 KB |
testcase_12 | AC | 132 ms
41,232 KB |
testcase_13 | WA | - |
testcase_14 | AC | 136 ms
41,348 KB |
testcase_15 | WA | - |
testcase_16 | AC | 134 ms
41,048 KB |
testcase_17 | AC | 138 ms
41,708 KB |
testcase_18 | WA | - |
testcase_19 | AC | 133 ms
40,972 KB |
testcase_20 | AC | 134 ms
41,328 KB |
testcase_21 | AC | 137 ms
41,404 KB |
testcase_22 | AC | 134 ms
41,472 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); Integer[] a = new Integer[N]; Integer[] b = new Integer[N]; for (int i = 0; i < N; i++) { a[i] = sc.nextInt(); } for (int i = 0; i < N; i++) { b[i] = sc.nextInt(); } Integer[] bcache = new Integer[N]; for (int i = 0; i < N; i++) { bcache[i] = b[i]; } int cnt = 0; int win = 0; Arrays.sort(a); Arrays.sort(b); do { do { int awin = 0; int bwin = 0; for (int i = 0; i < N; i++) { if (a[i] > b[i]) awin++; if (b[i] > a[i]) bwin++; } if (awin > bwin) win++; cnt++; } while ((b = (Integer[]) nextPermutation(b)) != null); b = new Integer[N]; for (int i = 0; i < N; i++) { b[i] = bcache[i]; } } while ((a = (Integer[]) nextPermutation(a)) != null); System.out.println(1.0 * win / cnt); } private static Comparable[] nextPermutation(final Comparable[] c) { int first = _getFirst(c); if (first == -1) return null; int toSwap = c.length - 1; while (c[first].compareTo(c[toSwap]) >= 0) { toSwap--; } swap(c, first++, toSwap); toSwap = c.length - 1; while (first < toSwap) { swap(c, first++, toSwap--); } return c; } private static void swap(final Comparable[] c, final int i, final int j) { final Comparable tmp = c[i]; c[i] = c[j]; c[j] = tmp; } private static int _getFirst(final Comparable[] c) { for (int i = c.length - 2; i >= 0; i--) { if (c[i].compareTo(c[i + 1]) < 0) { return i; } } return -1; } }