結果

問題 No.1994 Confusing Name
ユーザー kakel-sankakel-san
提出日時 2023-09-27 22:15:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,319 ms / 2,000 ms
コード長 2,588 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 108,416 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-07-20 16:37:24
合計ジャッジ時間 14,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,944 KB
testcase_01 AC 23 ms
18,944 KB
testcase_02 AC 24 ms
19,200 KB
testcase_03 AC 25 ms
18,816 KB
testcase_04 AC 23 ms
18,944 KB
testcase_05 AC 29 ms
19,328 KB
testcase_06 AC 32 ms
20,352 KB
testcase_07 AC 26 ms
19,328 KB
testcase_08 AC 29 ms
19,840 KB
testcase_09 AC 31 ms
20,096 KB
testcase_10 AC 30 ms
19,712 KB
testcase_11 AC 27 ms
19,328 KB
testcase_12 AC 495 ms
63,616 KB
testcase_13 AC 1,319 ms
79,488 KB
testcase_14 AC 726 ms
84,096 KB
testcase_15 AC 542 ms
72,832 KB
testcase_16 AC 461 ms
67,840 KB
testcase_17 AC 559 ms
72,832 KB
testcase_18 AC 754 ms
81,664 KB
testcase_19 AC 767 ms
81,664 KB
testcase_20 AC 754 ms
82,176 KB
testcase_21 AC 131 ms
34,560 KB
testcase_22 AC 70 ms
26,496 KB
testcase_23 AC 598 ms
72,448 KB
testcase_24 AC 603 ms
70,784 KB
testcase_25 AC 352 ms
53,888 KB
testcase_26 AC 172 ms
39,040 KB
testcase_27 AC 518 ms
67,200 KB
testcase_28 AC 359 ms
56,064 KB
testcase_29 AC 58 ms
26,496 KB
testcase_30 AC 428 ms
59,904 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();
        for (var i = 0; i < n; ++i) tree[s[i].Length - 1].Insert(s[i].ToCharArray());
        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;
                    if (tree[s[i].Length - 1].Exists(ch)) ++ans[i];
                }
                ch[j] = s[i][j];
            }
        }
        WriteLine(string.Join("\n", ans));
        // WriteLine(string.Join(" ", ans.Take(10)));
        // WriteLine((DateTime.Now - start).TotalSeconds);
    }
    class TrieTree
    {
        class Node
        {
            public char Val;
            public Node[] Next = new Node[26];
            public Node(char val)
            {
                Val = val;
            }
        }
        Node Head = new Node('a');
        public void Insert(char[] val)
        {
            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(val[i]);
                cur = cur.Next[val[i] - 'a'];
            }
        }
        public bool Exists(char[] val)
        {
            var cur = Head;
            for (var i = 0; i < val.Length; ++i)
            {
                if (cur == null) return false;
                cur = cur.Next[val[i] - 'a'];
            }
            return cur != null;
        }
    }
}
0