結果
問題 | No.515 典型LCP |
ユーザー | 37zigen |
提出日時 | 2017-05-05 23:36:43 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,477 bytes |
コンパイル時間 | 2,795 ms |
コンパイル使用メモリ | 79,044 KB |
実行使用メモリ | 113,140 KB |
最終ジャッジ日時 | 2024-09-14 09:17:46 |
合計ジャッジ時間 | 16,955 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | WA | - |
testcase_03 | AC | 126 ms
41,140 KB |
testcase_04 | AC | 115 ms
40,316 KB |
testcase_05 | AC | 688 ms
96,776 KB |
testcase_06 | AC | 694 ms
96,780 KB |
testcase_07 | AC | 678 ms
96,668 KB |
testcase_08 | AC | 691 ms
96,784 KB |
testcase_09 | AC | 710 ms
98,396 KB |
testcase_10 | AC | 636 ms
97,968 KB |
testcase_11 | AC | 622 ms
97,832 KB |
testcase_12 | AC | 616 ms
97,356 KB |
testcase_13 | WA | - |
testcase_14 | AC | 435 ms
52,604 KB |
testcase_15 | AC | 826 ms
97,228 KB |
testcase_16 | AC | 803 ms
96,796 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 p = 1_000_000_000 + 7; long[][] id = new long[N][]; for (int i = 0; i < N; ++i) { id[i] = new long[s[i].length()]; for (int j = 0; j < s[i].length(); ++j) { id[i][j] = (j - 1 >= 0 ? id[i][j - 1] : 0) * p + (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 (id[i][m - 1] == id[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)); } }