結果
問題 | No.2102 [Cherry Alpha *] Conditional Reflection |
ユーザー | kakel-san |
提出日時 | 2022-10-14 23:47:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 3,487 ms |
コンパイル使用メモリ | 109,056 KB |
実行使用メモリ | 53,724 KB |
最終ジャッジ日時 | 2024-06-26 17:45:07 |
合計ジャッジ時間 | 17,634 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
28,248 KB |
testcase_01 | AC | 33 ms
24,116 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 185 ms
43,100 KB |
testcase_43 | AC | 182 ms
42,972 KB |
testcase_44 | AC | 187 ms
43,232 KB |
testcase_45 | AC | 189 ms
42,720 KB |
testcase_46 | AC | 181 ms
40,796 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 125 ms
37,364 KB |
testcase_53 | AC | 126 ms
37,076 KB |
testcase_54 | AC | 126 ms
41,036 KB |
testcase_55 | AC | 135 ms
31,868 KB |
testcase_56 | AC | 137 ms
31,604 KB |
testcase_57 | WA | - |
testcase_58 | AC | 121 ms
33,356 KB |
testcase_59 | AC | 228 ms
51,172 KB |
testcase_60 | WA | - |
testcase_61 | AC | 137 ms
31,860 KB |
testcase_62 | AC | 39 ms
26,528 KB |
testcase_63 | AC | 73 ms
28,732 KB |
testcase_64 | AC | 72 ms
28,848 KB |
testcase_65 | AC | 75 ms
30,812 KB |
testcase_66 | AC | 130 ms
33,672 KB |
testcase_67 | AC | 125 ms
38,068 KB |
testcase_68 | AC | 118 ms
33,660 KB |
testcase_69 | AC | 126 ms
40,360 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static string[] SList(int n) => Enumerable.Repeat(0, n).Select(_ => ReadLine()).ToArray(); static void Main() { Solve(); } static void Solve() { var n = NN; var s = SList(n); WriteLine(Ref(n, s)); } static string Ref(int n, string[] s) { var maxlen = s.Max(si => si.Length); mul = new long[maxlen]; mul[0] = 1; for (var i = 1; i < mul.Length; ++i) mul[i] = mul[i - 1] * 31 % mod; var set = new HashSet<long>(); var res = new bool[n]; for (var i = 0; i < n; ++i) { var h = Hash(s[i]); var flg = false; if (set.Contains(h)) flg = true; for (var j = 0; j + 1 < s[i].Length; ++j) { if (flg) break; if (set.Contains(Swap(s[i], h, j))) flg = true; } res[i] = flg; set.Add(h); } return string.Join("\n", res.Select(f => f ? "Yes" : "No")); } static int mod = 1_000_000_009; static long[] mul = new long[0]; static long Hash(string a) { var res = 0L; for (var i = 0; i < a.Length; ++i) res = (res + (a[i] - 'a') * mul[i]) % mod; return res; } static long Swap(string a, long hash, int pos) { return (hash + (a[pos + 1] - a[pos] + mod) * mul[pos] % mod + (a[pos] - a[pos + 1] + mod) * mul[pos + 1] % mod) % mod; } }