結果

問題 No.1512 作文
ユーザー bluemeganebluemegane
提出日時 2021-11-04 17:21:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,023 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 110,584 KB
実行使用メモリ 68,284 KB
最終ジャッジ日時 2024-10-14 16:17:44
合計ジャッジ時間 8,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
27,084 KB
testcase_01 AC 33 ms
25,524 KB
testcase_02 AC 32 ms
25,164 KB
testcase_03 AC 32 ms
27,084 KB
testcase_04 AC 221 ms
46,876 KB
testcase_05 AC 222 ms
48,896 KB
testcase_06 AC 224 ms
47,120 KB
testcase_07 AC 224 ms
48,924 KB
testcase_08 AC 222 ms
46,892 KB
testcase_09 AC 56 ms
25,676 KB
testcase_10 AC 55 ms
27,976 KB
testcase_11 AC 54 ms
25,776 KB
testcase_12 AC 57 ms
27,964 KB
testcase_13 AC 56 ms
28,108 KB
testcase_14 AC 56 ms
27,184 KB
testcase_15 AC 55 ms
29,092 KB
testcase_16 AC 56 ms
31,028 KB
testcase_17 AC 56 ms
31,292 KB
testcase_18 AC 54 ms
29,472 KB
testcase_19 AC 55 ms
29,240 KB
testcase_20 AC 55 ms
29,496 KB
testcase_21 AC 30 ms
24,724 KB
testcase_22 AC 33 ms
25,168 KB
testcase_23 AC 36 ms
25,156 KB
testcase_24 AC 35 ms
25,008 KB
testcase_25 AC 36 ms
27,064 KB
testcase_26 AC 33 ms
27,056 KB
testcase_27 AC 30 ms
24,840 KB
testcase_28 AC 34 ms
24,788 KB
testcase_29 AC 34 ms
26,948 KB
testcase_30 AC 34 ms
27,072 KB
testcase_31 AC 35 ms
27,056 KB
testcase_32 AC 34 ms
25,032 KB
testcase_33 AC 34 ms
25,132 KB
testcase_34 AC 36 ms
25,164 KB
testcase_35 AC 60 ms
26,064 KB
testcase_36 AC 60 ms
26,032 KB
testcase_37 AC 49 ms
25,420 KB
testcase_38 AC 53 ms
25,008 KB
testcase_39 AC 53 ms
25,040 KB
testcase_40 AC 384 ms
68,284 KB
testcase_41 AC 254 ms
62,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

public class P
{
    public int start { get; set; }
    public int end { get; set; }
    public int L { get; set; }
}

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var ps = new List<P>();
        for (int i = 0; i < n; i++)
        {
            var s = Console.ReadLine().Trim();
            var w = getP(s);
            if (w.start != -1) ps.Add(w);
        }
        getAns(ps);
    }
    static void getAns(List<P> ps)
    {
        var n = ps.Count();
        if (n == 0) { Console.WriteLine(0); return; }
        ps = ps.OrderBy(x => x.end).ThenBy(x => x.start).ToList();
        var dp = new int[n, 27];
        for (int i = 0; i < n; i++)
            for (int j = 1; j <= 26; j++) dp[i, j] = -1;
        var w = ps[0];
        dp[0, 0] = 0;
        dp[0, w.end] = w.L;
        for (int i = 0; i < n - 1; i++)
            for (int j = 0; j <= 26; j++)
            {
                var ww = dp[i, j];
                if (ww != -1)
                {
                    if (ps[i + 1].start < j) goto notselect;
                    var nextend = ps[i + 1].end;
                    var dpp = dp[i + 1, nextend];
                    dp[i + 1, nextend] = dpp == -1 ? ww + ps[i + 1].L : Max(dpp, ww + ps[i + 1].L);
                notselect:;
                    var dpp2 = dp[i + 1, j];
                    dp[i + 1, j] = dpp2 == -1 ? ww : Max(dpp2, ww);
                }
            }
        var ans = 0;
        for (int i = 1; i <= 26; i++)
        {
            if (dp[n - 1, i] != -1) ans = Max(ans, dp[n - 1, i]);
        }
        Console.WriteLine(ans);
    }
    static P getP(string s)
    {
        var sL = s.Length;
        var ss = s.ToCharArray();
        Array.Sort(ss);
        if (new string(ss) == s)
            return new P { start = s[0] - 'a' + 1, end = s[sL - 1] - 'a' + 1, L = sL };
        else return new P { start = -1 };
    }
}
0