結果
問題 | No.2745 String Swap Battle |
ユーザー | kakel-san |
提出日時 | 2024-07-05 00:33:52 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 166 ms / 2,000 ms |
コード長 | 2,065 bytes |
コンパイル時間 | 13,757 ms |
コンパイル使用メモリ | 168,392 KB |
実行使用メモリ | 190,636 KB |
最終ジャッジ日時 | 2024-07-05 00:34:09 |
合計ジャッジ時間 | 14,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
33,664 KB |
testcase_01 | AC | 75 ms
33,408 KB |
testcase_02 | AC | 58 ms
30,336 KB |
testcase_03 | AC | 59 ms
30,848 KB |
testcase_04 | AC | 71 ms
31,724 KB |
testcase_05 | AC | 71 ms
31,616 KB |
testcase_06 | AC | 75 ms
33,536 KB |
testcase_07 | AC | 76 ms
33,260 KB |
testcase_08 | AC | 74 ms
33,536 KB |
testcase_09 | AC | 75 ms
33,408 KB |
testcase_10 | AC | 75 ms
32,768 KB |
testcase_11 | AC | 75 ms
32,512 KB |
testcase_12 | AC | 166 ms
63,108 KB |
testcase_13 | AC | 159 ms
62,676 KB |
testcase_14 | AC | 158 ms
62,592 KB |
testcase_15 | AC | 75 ms
33,792 KB |
testcase_16 | AC | 76 ms
33,792 KB |
testcase_17 | AC | 77 ms
33,920 KB |
testcase_18 | AC | 57 ms
30,848 KB |
testcase_19 | AC | 58 ms
30,592 KB |
testcase_20 | AC | 58 ms
190,636 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (101 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/
ソースコード
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) { if (flg) break; 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; } } for (var j = 0; j + 1 < tc.Length; ++j) { if (flg) break; if (tc[j] == tc[j + 1]) { flg = true; } } 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)); } }