結果

問題 No.1512 作文
ユーザー bluemeganebluemegane
提出日時 2021-11-04 18:25:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,911 bytes
コンパイル時間 5,339 ms
コンパイル使用メモリ 107,520 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-10-14 17:58:39
合計ジャッジ時間 7,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,688 KB
testcase_01 AC 28 ms
18,816 KB
testcase_02 AC 28 ms
18,944 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 202 ms
40,832 KB
testcase_05 AC 199 ms
40,704 KB
testcase_06 AC 199 ms
40,960 KB
testcase_07 AC 198 ms
40,704 KB
testcase_08 AC 197 ms
40,832 KB
testcase_09 AC 51 ms
19,968 KB
testcase_10 AC 49 ms
19,840 KB
testcase_11 AC 48 ms
20,096 KB
testcase_12 AC 50 ms
19,968 KB
testcase_13 AC 48 ms
20,096 KB
testcase_14 AC 50 ms
23,144 KB
testcase_15 AC 48 ms
22,868 KB
testcase_16 AC 50 ms
23,012 KB
testcase_17 AC 48 ms
23,272 KB
testcase_18 AC 53 ms
23,136 KB
testcase_19 AC 51 ms
23,012 KB
testcase_20 AC 48 ms
22,988 KB
testcase_21 AC 25 ms
18,944 KB
testcase_22 AC 26 ms
18,944 KB
testcase_23 AC 30 ms
19,200 KB
testcase_24 AC 30 ms
19,328 KB
testcase_25 AC 30 ms
18,944 KB
testcase_26 AC 28 ms
18,688 KB
testcase_27 AC 24 ms
18,816 KB
testcase_28 AC 30 ms
18,816 KB
testcase_29 AC 27 ms
18,816 KB
testcase_30 AC 28 ms
18,816 KB
testcase_31 AC 28 ms
18,944 KB
testcase_32 AC 28 ms
19,072 KB
testcase_33 AC 29 ms
19,200 KB
testcase_34 AC 30 ms
19,072 KB
testcase_35 AC 53 ms
19,840 KB
testcase_36 AC 53 ms
20,096 KB
testcase_37 AC 42 ms
19,200 KB
testcase_38 AC 48 ms
20,488 KB
testcase_39 AC 45 ms
20,224 KB
testcase_40 AC 341 ms
57,984 KB
testcase_41 AC 240 ms
58,240 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)
                {
                    dp[i + 1, j] = Max(dp[i + 1, j], ww);
                    if (ps[i + 1].start >= j)
                    {
                        var nextend = ps[i + 1].end;
                        dp[i + 1, nextend] = Max(dp[i + 1, nextend], ww + ps[i + 1].L);
                    }
                }
            }
        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