結果

問題 No.1994 Confusing Name
ユーザー kakel-sankakel-san
提出日時 2023-09-27 22:20:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,261 ms / 2,000 ms
コード長 2,724 bytes
コンパイル時間 2,665 ms
コンパイル使用メモリ 108,800 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-07-20 16:40:49
合計ジャッジ時間 11,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
18,816 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 29 ms
18,816 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 28 ms
19,072 KB
testcase_05 AC 30 ms
19,456 KB
testcase_06 AC 33 ms
20,224 KB
testcase_07 AC 30 ms
19,200 KB
testcase_08 AC 32 ms
19,584 KB
testcase_09 AC 35 ms
20,224 KB
testcase_10 AC 33 ms
19,712 KB
testcase_11 AC 32 ms
19,456 KB
testcase_12 AC 527 ms
63,616 KB
testcase_13 AC 1,261 ms
79,488 KB
testcase_14 AC 679 ms
83,968 KB
testcase_15 AC 507 ms
71,424 KB
testcase_16 AC 456 ms
67,328 KB
testcase_17 AC 508 ms
71,296 KB
testcase_18 AC 711 ms
81,792 KB
testcase_19 AC 740 ms
81,664 KB
testcase_20 AC 733 ms
82,048 KB
testcase_21 AC 121 ms
34,432 KB
testcase_22 AC 71 ms
26,112 KB
testcase_23 AC 582 ms
70,656 KB
testcase_24 AC 564 ms
70,784 KB
testcase_25 AC 333 ms
50,560 KB
testcase_26 AC 180 ms
38,912 KB
testcase_27 AC 522 ms
66,688 KB
testcase_28 AC 362 ms
54,656 KB
testcase_29 AC 60 ms
26,240 KB
testcase_30 AC 422 ms
59,648 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var s = SList(n);
        // var r = new Random();
        // var n = 50000;
        // var s = new string[n];
        // for (var i = 0; i < n; ++i)
        // {
        //     var c = new char[10];
        //     for (var j = 0; j < 10; ++j) c[j] = (char)('a' + r.Next(26));
        //     s[i] = string.Concat(c);
        // }
        // var start = DateTime.Now;
        var tree = new TrieTree[10];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new TrieTree();
        var ans = new int[n];
        for (var i = 0; i < n; ++i)
        {
            var ch = s[i].ToCharArray();
            for (var j = 0; j < ch.Length; ++j)
            {
                for (var c = 'a'; c <= 'z'; ++c)
                {
                    if (s[i][j] == c) continue;
                    ch[j] = c;
                    var id = tree[s[i].Length - 1].GetId(ch);
                    if (id >= 0)
                    {
                        ++ans[i];
                        ++ans[id];
                    }
                }
                ch[j] = s[i][j];
            }
            tree[s[i].Length - 1].Insert(s[i].ToCharArray(), i);
        }
        WriteLine(string.Join("\n", ans));
        // WriteLine(string.Join(" ", ans.Take(10)));
        // WriteLine((DateTime.Now - start).TotalSeconds);
    }
    class TrieTree
    {
        class Node
        {
            public int Val;
            public Node[] Next = new Node[26];
            public Node(int val)
            {
                Val = val;
            }
        }
        Node Head = new Node('a');
        public void Insert(char[] val, int id)
        {
            var cur = Head;
            for (var i = 0; i < val.Length; ++i)
            {
                if (cur.Next[val[i] - 'a'] == null) cur.Next[val[i] - 'a'] = new Node(id);
                cur = cur.Next[val[i] - 'a'];
            }
        }
        public int GetId(char[] val)
        {
            var cur = Head;
            for (var i = 0; i < val.Length; ++i)
            {
                if (cur == null) return -1;
                cur = cur.Next[val[i] - 'a'];
            }
            return cur == null ? -1 : cur.Val;
        }
    }
}
0