結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー kakel-sankakel-san
提出日時 2022-10-14 23:57:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,796 bytes
コンパイル時間 2,880 ms
コンパイル使用メモリ 113,624 KB
実行使用メモリ 109,844 KB
最終ジャッジ日時 2024-06-26 18:04:21
合計ジャッジ時間 17,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
28,388 KB
testcase_01 AC 32 ms
25,952 KB
testcase_02 AC 138 ms
43,444 KB
testcase_03 WA -
testcase_04 AC 137 ms
43,592 KB
testcase_05 AC 115 ms
39,960 KB
testcase_06 AC 147 ms
41,544 KB
testcase_07 WA -
testcase_08 AC 68 ms
28,620 KB
testcase_09 WA -
testcase_10 AC 80 ms
31,788 KB
testcase_11 AC 75 ms
33,208 KB
testcase_12 AC 120 ms
40,464 KB
testcase_13 WA -
testcase_14 AC 126 ms
42,460 KB
testcase_15 AC 155 ms
43,216 KB
testcase_16 AC 196 ms
45,848 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 95 ms
33,164 KB
testcase_20 WA -
testcase_21 AC 106 ms
40,352 KB
testcase_22 WA -
testcase_23 AC 220 ms
47,496 KB
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 AC 214 ms
47,344 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 209 ms
47,716 KB
testcase_41 WA -
testcase_42 AC 173 ms
42,968 KB
testcase_43 AC 175 ms
40,796 KB
testcase_44 AC 174 ms
43,488 KB
testcase_45 AC 174 ms
41,064 KB
testcase_46 AC 180 ms
40,664 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 357 ms
109,712 KB
testcase_53 AC 356 ms
109,844 KB
testcase_54 AC 355 ms
107,796 KB
testcase_55 AC 129 ms
33,664 KB
testcase_56 AC 129 ms
33,804 KB
testcase_57 WA -
testcase_58 AC 258 ms
77,436 KB
testcase_59 AC 207 ms
51,832 KB
testcase_60 AC 68 ms
30,376 KB
testcase_61 AC 129 ms
29,696 KB
testcase_62 AC 35 ms
26,296 KB
testcase_63 AC 66 ms
28,908 KB
testcase_64 AC 65 ms
28,744 KB
testcase_65 AC 66 ms
30,968 KB
testcase_66 AC 123 ms
31,620 KB
testcase_67 AC 117 ms
38,216 KB
testcase_68 AC 112 ms
31,604 KB
testcase_69 AC 119 ms
38,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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>[maxlen];
        for (var i = 0; i < set.Length; ++i) set[i] = 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[s[i].Length - 1].Contains(h)) flg = true;
            for (var j = 0; j + 1 < s[i].Length; ++j)
            {
                if (flg) break;
                if (set[s[i].Length - 1].Contains(Swap(s[i], h, j))) flg = true;
            }
            res[i] = flg;
            set[s[i].Length - 1].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;
    }
}
0