結果

問題 No.2172 SEARCH in the Text Editor
ユーザー kakel-sankakel-san
提出日時 2023-10-16 21:52:20
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 3,779 bytes
コンパイル時間 9,415 ms
コンパイル使用メモリ 167,768 KB
実行使用メモリ 198,788 KB
最終ジャッジ日時 2024-09-16 22:18:36
合計ジャッジ時間 20,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,200 KB
testcase_01 AC 53 ms
29,952 KB
testcase_02 AC 50 ms
30,080 KB
testcase_03 AC 522 ms
64,756 KB
testcase_04 AC 204 ms
64,516 KB
testcase_05 AC 211 ms
64,508 KB
testcase_06 AC 113 ms
49,664 KB
testcase_07 AC 124 ms
51,072 KB
testcase_08 AC 127 ms
52,096 KB
testcase_09 AC 131 ms
55,552 KB
testcase_10 AC 124 ms
54,260 KB
testcase_11 AC 100 ms
45,568 KB
testcase_12 AC 146 ms
57,960 KB
testcase_13 AC 193 ms
65,664 KB
testcase_14 AC 175 ms
62,084 KB
testcase_15 AC 116 ms
48,232 KB
testcase_16 AC 122 ms
51,712 KB
testcase_17 AC 135 ms
56,576 KB
testcase_18 AC 155 ms
61,964 KB
testcase_19 AC 199 ms
66,068 KB
testcase_20 AC 119 ms
49,152 KB
testcase_21 AC 165 ms
62,184 KB
testcase_22 AC 190 ms
63,068 KB
testcase_23 AC 172 ms
62,780 KB
testcase_24 AC 174 ms
62,688 KB
testcase_25 AC 172 ms
62,488 KB
testcase_26 AC 218 ms
64,060 KB
testcase_27 AC 225 ms
64,184 KB
testcase_28 AC 203 ms
65,968 KB
testcase_29 AC 194 ms
63,568 KB
testcase_30 AC 186 ms
64,668 KB
testcase_31 AC 184 ms
63,500 KB
testcase_32 AC 172 ms
62,128 KB
testcase_33 AC 168 ms
62,128 KB
testcase_34 AC 171 ms
62,660 KB
testcase_35 AC 169 ms
63,200 KB
testcase_36 AC 167 ms
62,732 KB
testcase_37 AC 167 ms
62,620 KB
testcase_38 AC 199 ms
64,284 KB
testcase_39 AC 215 ms
64,448 KB
testcase_40 AC 207 ms
65,884 KB
testcase_41 AC 186 ms
63,588 KB
testcase_42 AC 174 ms
63,364 KB
testcase_43 AC 168 ms
62,924 KB
testcase_44 AC 176 ms
62,132 KB
testcase_45 AC 165 ms
62,104 KB
testcase_46 AC 120 ms
51,456 KB
testcase_47 AC 107 ms
46,316 KB
testcase_48 AC 103 ms
46,976 KB
testcase_49 AC 131 ms
57,088 KB
testcase_50 AC 129 ms
55,296 KB
testcase_51 AC 101 ms
198,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(97,16): warning CS0414: フィールド 'Program.mod' が割り当てられていますが、値は使用されていません [/home/judge/data/code/main.csproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var t = ReadLine();
        var list = new Pair[n];
        var mod = 998_244_353;
        for (var i = 0; i < n; ++i)
        {
            var s = ReadLine();
            if (s[0] == '~')
            {
                var c = s.Split();
                var a = int.Parse(c[1]) - 1;
                var b = int.Parse(c[2]) - 1;
                if (list[a].IsShort && list[b].IsShort)
                {
                    var u = list[a].Left.Concat(list[b].Left).ToArray();
                    if (u.Length < t.Length)
                    {
                        list[i] = new Pair(u.ToArray(), u.ToArray(), true, 0);
                    }
                    else
                    {
                        list[i] = new Pair(u.Take(t.Length - 1).ToArray(),
                            u.Skip(u.Length - t.Length + 1).ToArray(), false, Count(t, u));
                    }
                }
                else if (list[a].IsShort)
                {
                    var u = list[a].Left.Concat(list[b].Left).ToArray();
                    list[i] = new Pair(u.Take(t.Length - 1).ToArray(),
                        list[b].Right, false, (list[b].Count + Count(t, u)) % mod);
                }
                else if (list[b].IsShort)
                {
                    var u = list[a].Right.Concat(list[b].Left).ToArray();
                    list[i] = new Pair(list[a].Left,
                        u.Skip(u.Length - t.Length + 1).ToArray(), false, (list[a].Count + Count(t, u)) % mod);
                }
                else
                {
                    var u = list[a].Right.Concat(list[b].Left).ToArray();
                    list[i] = new Pair(list[a].Left, list[b].Right, false, (list[a].Count + list[b].Count + Count(t, u)) % mod);
                }
            }
            else
            {
                if (s.Length < t.Length)
                {
                    list[i] = new Pair(s.ToCharArray(), s.ToCharArray(), true, 0);
                }
                else //if (t.Length > 1)
                {
                    list[i] = new Pair(s.Take(t.Length - 1).ToArray(),
                        s.Skip(s.Length - t.Length + 1).ToArray(), false, Count(t, s.ToCharArray()));
                }
                // else
                // {
                //     list[i] = new Pair(Array.Empty<char>(), Array.Empty<char>(), false, Count(t, s.ToArray()));
                // }
            }
        }
        WriteLine(list[n - 1].Count);
    }
    static int Count(string t, char[] u)
    {
        var ans = 0;
        for (var i = 0; i + t.Length <= u.Length; ++i)
        {
            var flg = true;
            for (var j = 0; j < t.Length; ++j)
            {
                if (t[j] != u[i + j])
                {
                    flg = false;
                    break;
                }
            }
            if (flg) ++ans;
        }
        return ans;
    }
    static int mod = 998_244_353;
    class Pair
    {
        public char[] Left;
        public char[] Right;
        public bool IsShort;
        public long Count;
        public Pair(char[] l, char[] r, bool i, long c)
        {
            Left = l; Right = r; IsShort = i; Count = c;
        }
    }
}
0