結果
問題 | No.515 典型LCP |
ユーザー | 37zigen |
提出日時 | 2017-05-05 23:45:27 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,782 bytes |
コンパイル時間 | 2,496 ms |
コンパイル使用メモリ | 78,904 KB |
実行使用メモリ | 133,844 KB |
最終ジャッジ日時 | 2024-09-14 09:22:44 |
合計ジャッジ時間 | 16,550 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | WA | - |
testcase_03 | AC | 135 ms
53,928 KB |
testcase_04 | AC | 135 ms
53,980 KB |
testcase_05 | AC | 651 ms
115,392 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 785 ms
116,356 KB |
testcase_10 | AC | 644 ms
115,848 KB |
testcase_11 | AC | 651 ms
116,088 KB |
testcase_12 | AC | 631 ms
116,324 KB |
testcase_13 | WA | - |
testcase_14 | AC | 478 ms
67,304 KB |
testcase_15 | WA | - |
testcase_16 | AC | 684 ms
115,096 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_00 + 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'); id2[i][j] = (j - 1 >= 0 ? id2[i][j - 1] : 0) + (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)); } }