結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー kakel-sankakel-san
提出日時 2024-07-11 23:25:48
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,106 bytes
コンパイル時間 13,552 ms
コンパイル使用メモリ 166,700 KB
実行使用メモリ 185,292 KB
最終ジャッジ日時 2024-07-11 23:26:11
合計ジャッジ時間 21,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,332 KB
testcase_01 AC 57 ms
30,464 KB
testcase_02 AC 57 ms
30,336 KB
testcase_03 AC 57 ms
30,336 KB
testcase_04 AC 57 ms
30,464 KB
testcase_05 AC 58 ms
30,584 KB
testcase_06 AC 57 ms
30,336 KB
testcase_07 AC 58 ms
30,336 KB
testcase_08 WA -
testcase_09 AC 57 ms
30,452 KB
testcase_10 AC 56 ms
30,336 KB
testcase_11 AC 57 ms
30,464 KB
testcase_12 AC 57 ms
30,336 KB
testcase_13 AC 62 ms
30,336 KB
testcase_14 AC 60 ms
30,720 KB
testcase_15 WA -
testcase_16 AC 58 ms
30,464 KB
testcase_17 AC 58 ms
30,444 KB
testcase_18 AC 59 ms
30,464 KB
testcase_19 AC 57 ms
30,464 KB
testcase_20 AC 57 ms
30,324 KB
testcase_21 AC 57 ms
30,464 KB
testcase_22 AC 130 ms
59,648 KB
testcase_23 AC 89 ms
40,320 KB
testcase_24 AC 87 ms
38,784 KB
testcase_25 AC 135 ms
62,720 KB
testcase_26 AC 151 ms
65,908 KB
testcase_27 AC 132 ms
63,744 KB
testcase_28 AC 139 ms
66,432 KB
testcase_29 AC 97 ms
44,152 KB
testcase_30 AC 90 ms
40,832 KB
testcase_31 AC 143 ms
66,048 KB
testcase_32 AC 93 ms
43,764 KB
testcase_33 AC 64 ms
31,872 KB
testcase_34 AC 98 ms
45,184 KB
testcase_35 AC 139 ms
64,384 KB
testcase_36 AC 141 ms
54,400 KB
testcase_37 AC 86 ms
37,376 KB
testcase_38 AC 166 ms
66,176 KB
testcase_39 AC 61 ms
31,744 KB
testcase_40 AC 145 ms
62,304 KB
testcase_41 AC 101 ms
44,288 KB
testcase_42 AC 110 ms
48,492 KB
testcase_43 AC 79 ms
34,028 KB
testcase_44 AC 84 ms
36,864 KB
testcase_45 AC 175 ms
66,304 KB
testcase_46 AC 162 ms
66,304 KB
testcase_47 AC 160 ms
66,560 KB
testcase_48 AC 159 ms
66,432 KB
testcase_49 AC 159 ms
66,420 KB
testcase_50 AC 57 ms
185,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (107 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 int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var list = a.Distinct().ToList();
        list.Sort();
        var dic = new Dictionary<int, int>();
        for (var i = 0; i < list.Count; ++i) dic[list[i]] = i;
        var b = new int[n];
        for (var i = 0; i < n; ++i) b[i] = dic[a[i]];
        var inv = 0;
        for (var i = 0; i + 1 < n; ++i)
        {
            if (b[i] > b[i + 1])
            {
                ++inv;
                if (b[i + 1] > 0) ++inv;
            }
        }
        WriteLine(Math.Min(2, inv));
    }
}
0