結果
問題 | No.173 カードゲーム(Medium) |
ユーザー | Grenache |
提出日時 | 2016-07-18 21:31:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 458 ms / 3,000 ms |
コード長 | 2,934 bytes |
コンパイル時間 | 4,145 ms |
コンパイル使用メモリ | 79,060 KB |
実行使用メモリ | 48,128 KB |
最終ジャッジ日時 | 2024-10-15 17:05:12 |
合計ジャッジ時間 | 8,940 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 175 ms
45,412 KB |
testcase_01 | AC | 257 ms
47,104 KB |
testcase_02 | AC | 406 ms
47,360 KB |
testcase_03 | AC | 419 ms
47,744 KB |
testcase_04 | AC | 419 ms
47,984 KB |
testcase_05 | AC | 446 ms
47,692 KB |
testcase_06 | AC | 367 ms
48,088 KB |
testcase_07 | AC | 394 ms
47,996 KB |
testcase_08 | AC | 380 ms
48,128 KB |
testcase_09 | AC | 458 ms
47,584 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder173 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = sc.nextInt(); int pa = (int)(sc.nextDouble() * 1000); int pb = (int)(sc.nextDouble() * 1000); int[] a = new int[n]; int[] b = new int[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); } for (int i = 0; i < n; i++) { b[i] = sc.nextInt(); } Arrays.sort(a); Arrays.sort(b); int win = 0; int loop = 100_000; for (int i = 0; i < loop; i++) { int aa = 0; int bb = 0; int maska = 0; int maskb = 0; int mask = (0x1 << n) - 1; int[] sa = new int[n]; int[] sb = new int[n]; for (int j = 0; j < n; j++) { int mina = Integer.numberOfTrailingZeros(~maska & mask); int minb = Integer.numberOfTrailingZeros(~maskb & mask); if (j == n - 1) { sa[j] = mina; sb[j] = minb; } else { int ra = (int)(Math.random() * 1000); int rb = (int)(Math.random() * 1000); if (ra < pa) { sa[j] = mina; maska |= 0x1 << mina; } else { // int tmp = (int)((double)(ra + 1 - pa) / (1000 - pa) * (n - j - 1)); int tmp = (int)(Math.random() * (n - j - 1)); for (int k = mina + 1; k < n; k++) { if ((maska & 0x1 << k) != 0) { continue; } if (tmp == 0) { sa[j] = k; maska |= 0x1 << k; break; } tmp--; } } if (rb < pb) { sb[j] = minb; maskb |= 0x1 << minb; } else { // int tmp = (int)((double)(rb + 1 - pb) / (1000 - pb) * (n - j - 1)); int tmp = (int)(Math.random() * (n - j - 1)); for (int k = minb + 1; k < n; k++) { if ((maskb & 0x1 << k) != 0) { continue; } if (tmp == 0) { sb[j] = k; maskb |= 0x1 << k; break; } tmp--; } } } } for (int j = 0; j < n; j++) { if (a[sa[j]] > b[sb[j]]) { aa += a[sa[j]] + b[sb[j]]; } else { bb += a[sa[j]] + b[sb[j]]; } } if (aa > bb) { win++; } } pr.printf("%.4f\n", (double)win / loop); pr.close(); sc.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }