結果
問題 | No.515 典型LCP |
ユーザー | 37zigen |
提出日時 | 2017-05-05 23:39:24 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,697 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 79,904 KB |
実行使用メモリ | 120,820 KB |
最終ジャッジ日時 | 2024-09-14 09:20:07 |
合計ジャッジ時間 | 17,454 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | AC | 132 ms
41,120 KB |
testcase_04 | AC | 129 ms
40,980 KB |
testcase_05 | AC | 693 ms
103,272 KB |
testcase_06 | AC | 687 ms
103,276 KB |
testcase_07 | AC | 678 ms
103,240 KB |
testcase_08 | AC | 689 ms
103,368 KB |
testcase_09 | AC | 828 ms
104,480 KB |
testcase_10 | AC | 695 ms
104,044 KB |
testcase_11 | AC | 692 ms
103,964 KB |
testcase_12 | AC | 695 ms
104,268 KB |
testcase_13 | WA | - |
testcase_14 | AC | 466 ms
57,404 KB |
testcase_15 | AC | 735 ms
103,396 KB |
testcase_16 | AC | 729 ms
103,412 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; import java.util.concurrent.SynchronousQueue; class Main { int N, M; int[] X, Y; public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] s = new String[N]; for (int i = 0; i < N; ++i) { s[i] = sc.next(); } long M = sc.nextLong(); long x = sc.nextLong(); long d = sc.nextLong(); long[] i_ = new long[(int) M]; long[] j_ = new long[(int) M]; for (int k = 0; k < M; ++k) { i_[k] = (x / (N - 1)) + 1; j_[k] = (x % (N - 1)) + 1; if (i_[k] > j_[k]) { long tmp = i_[k]; i_[k] = j_[k]; j_[k] = tmp; } else { j_[k] = j_[k] + 1; } x = (x + d) % (N * (N - 1)); } long p1 = 1_000_000_000 + 7; long p2 = 1_000_000_000 + 9; long[][] id1 = new long[N][]; long[][] id2 = new long[N][]; for (int i = 0; i < N; ++i) { id1[i] = new long[s[i].length()]; id2[i] = new long[s[i].length()]; for (int j = 0; j < s[i].length(); ++j) { id1[i][j] = (j - 1 >= 0 ? id2[i][j - 1] : 0) * p1 + (s[i].charAt(j) - 'a'); id2[i][j] = (j - 1 >= 0 ? id2[i][j - 1] : 0) * p2 + (s[i].charAt(j) - 'a'); } } int ans = 0; for (int k = 0; k < M; ++k) { int i = (int) (i_[k]) - 1; int j = (int) (j_[k]) - 1; int l = 0; int r = 1 + Math.min(s[i].length(), s[j].length()); while (r - l > 1) { int m = (l + r) / 2; if (id1[i][m - 1] == id1[j][m - 1]&&id2[i][m - 1] == id2[j][m - 1]) { l = m; } else { r = m; } } ans += l; } System.out.println(ans); } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }