結果

問題 No.2745 String Swap Battle
ユーザー kakel-sankakel-san
提出日時 2024-07-05 00:28:02
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,837 bytes
コンパイル時間 14,408 ms
コンパイル使用メモリ 164,284 KB
実行使用メモリ 191,932 KB
最終ジャッジ日時 2024-07-05 00:28:20
合計ジャッジ時間 17,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
33,532 KB
testcase_01 AC 77 ms
33,408 KB
testcase_02 AC 59 ms
30,848 KB
testcase_03 AC 86 ms
30,848 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
33,536 KB
testcase_07 AC 77 ms
33,504 KB
testcase_08 AC 76 ms
33,408 KB
testcase_09 AC 76 ms
33,536 KB
testcase_10 AC 74 ms
32,512 KB
testcase_11 AC 75 ms
32,000 KB
testcase_12 AC 166 ms
62,844 KB
testcase_13 AC 165 ms
62,860 KB
testcase_14 AC 174 ms
62,724 KB
testcase_15 AC 79 ms
33,664 KB
testcase_16 AC 80 ms
33,664 KB
testcase_17 AC 76 ms
33,776 KB
testcase_18 AC 58 ms
30,592 KB
testcase_19 AC 59 ms
30,976 KB
testcase_20 AC 59 ms
191,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (125 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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 int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).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 t = new string[n];
        var min = "|";
        var minc = 0;
        for (var i = 0; i < n; ++i)
        {
            var tc = s[i].ToCharArray();
            var pos = Enumerable.Repeat(-1, 26).ToArray();
            for (var j = tc.Length - 1; j >= 0; --j)
            {
                pos[tc[j] - 'a'] = Math.Max(pos[tc[j] - 'a'], j);
            }
            var flg = false;
            for (var j = 0; j < tc.Length; ++j)
            {
                for (var c = 0; c < tc[j] - 'a'; ++c) if (pos[c] > j)
                {
                    (tc[j], tc[pos[c]]) = (tc[pos[c]], tc[j]);
                    flg = true;
                    break;
                }
                if (flg) break;
            }
            if (!flg) (tc[^2], tc[^1]) = (tc[^1], tc[^2]);
            t[i] = string.Concat(tc);
            if (string.CompareOrdinal(t[i], min) < 0)
            {
                min = t[i];
                minc = 1;
            }
            else if (t[i] == min)
            {
                ++minc;
            }
        }
        var ans = new int[n];
        for (var i = 0; i < n; ++i) if (t[i] == min) ans[i] = n + 1 - minc;
        WriteLine(string.Join("\n", ans));
    }
}
0