結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー kakel-sankakel-san
提出日時 2023-02-03 22:00:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,251 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-07-02 19:56:14
合計ジャッジ時間 6,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 23 ms
17,536 KB
testcase_02 AC 22 ms
17,664 KB
testcase_03 AC 60 ms
30,592 KB
testcase_04 AC 31 ms
19,840 KB
testcase_05 AC 27 ms
18,304 KB
testcase_06 AC 86 ms
36,608 KB
testcase_07 AC 80 ms
35,712 KB
testcase_08 AC 75 ms
34,688 KB
testcase_09 AC 78 ms
35,072 KB
testcase_10 AC 85 ms
36,736 KB
testcase_11 AC 76 ms
34,688 KB
testcase_12 AC 86 ms
36,608 KB
testcase_13 AC 87 ms
36,864 KB
testcase_14 AC 86 ms
36,608 KB
testcase_15 AC 82 ms
35,840 KB
testcase_16 AC 47 ms
25,856 KB
testcase_17 AC 55 ms
28,672 KB
testcase_18 AC 86 ms
36,736 KB
testcase_19 AC 86 ms
36,736 KB
testcase_20 AC 86 ms
36,608 KB
testcase_21 AC 87 ms
38,400 KB
testcase_22 AC 86 ms
37,504 KB
testcase_23 AC 87 ms
38,272 KB
testcase_24 AC 87 ms
36,608 KB
testcase_25 AC 86 ms
36,608 KB
testcase_26 AC 86 ms
36,864 KB
testcase_27 AC 65 ms
32,256 KB
testcase_28 AC 87 ms
36,864 KB
testcase_29 AC 87 ms
38,400 KB
testcase_30 AC 22 ms
17,536 KB
testcase_31 AC 22 ms
17,408 KB
testcase_32 AC 177 ms
34,816 KB
testcase_33 AC 87 ms
38,272 KB
testcase_34 AC 23 ms
17,536 KB
testcase_35 AC 179 ms
34,944 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[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var s = ReadLine();

        var pal = new bool[s.Length, s.Length + 1];
        for (var i = 0; i < s.Length; ++i)
        {
            var d = 0;
            while (i - d >= 0 && i + d < s.Length && s[i - d] == s[i + d])
            {
                pal[i - d, i + d + 1] = true;
                ++d;
            }
        }
        for (var i = 0; i + 1 < s.Length; ++i)
        {
            var d = 0;
            while (i - d >= 0 && i + d + 1 < s.Length && s[i - d] == s[i + d + 1])
            {
                pal[i - d, i + d + 2] = true;
                ++d;
            }
        }
        var dp = new int[s.Length + 1];
        for (var i = 1; i <= s.Length; ++i) if (pal[0, i]) dp[i] = i;
        for (var i = 0; i < s.Length; ++i) for (var j = i + 1; j < dp.Length; ++j)
        {
            if (pal[i, j]) dp[j] = Math.Max(dp[j], Math.Min(dp[i], j - i));
        }
        WriteLine(dp[s.Length]);
    }
}
0