結果
問題 | No.670 log は定数 |
ユーザー | yosupot |
提出日時 | 2017-09-10 03:36:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,829 ms / 4,000 ms |
コード長 | 1,446 bytes |
コンパイル時間 | 2,524 ms |
コンパイル使用メモリ | 77,248 KB |
実行使用メモリ | 47,764 KB |
最終ジャッジ日時 | 2024-11-07 12:42:32 |
合計ジャッジ時間 | 22,531 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,755 ms
47,664 KB |
testcase_01 | AC | 1,769 ms
47,264 KB |
testcase_02 | AC | 1,762 ms
47,332 KB |
testcase_03 | AC | 1,753 ms
47,764 KB |
testcase_04 | AC | 1,787 ms
47,764 KB |
testcase_05 | AC | 1,746 ms
47,548 KB |
testcase_06 | AC | 1,750 ms
47,484 KB |
testcase_07 | AC | 1,744 ms
47,300 KB |
testcase_08 | AC | 1,829 ms
47,652 KB |
testcase_09 | AC | 1,778 ms
47,464 KB |
ソースコード
import java.util.*; public class Main { static long seed; static int next() { seed = seed ^ (seed << 13); seed = seed ^ (seed >>> 7); seed = seed ^ (seed << 17); return (int)(seed >>> 33); } static final long B = 300000; static final long S = (1L<<32) / B + 1; static int n; static int[] a, L, R; public static void first() { L = new int[(int)B]; R = new int[(int)B]; int c = 0; for (int i = 0; i < B; i++) { L[i] = c; while (c < n && (int)(a[c] / S) == i) c++; R[i] = c; } } public static int query(int x) { int i = (int)(x / S); int l = L[i]-1, r = R[i]; while (r-l > 1) { int md = (l+r)/2; if (a[md] < x) { l = md; } else { r = md; } } return r; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); int q = sc.nextInt(); seed = sc.nextLong(); for (int i = 0; i < 10000; i++) next(); a = new int[n]; for (int i = 0; i < n; i++) a[i] = next(); Arrays.sort(a); first(); long sm = 0; for (int i = 0; i < q; i++) { int x = next(); sm ^= (long)(query(x)) * i; } System.out.println(sm); } }