結果

問題 No.2089 置換の符号
ユーザー kakel-sankakel-san
提出日時 2022-09-30 22:03:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 110,796 KB
実行使用メモリ 27,720 KB
最終ジャッジ日時 2024-06-02 05:41:23
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,216 KB
testcase_01 AC 27 ms
25,228 KB
testcase_02 AC 26 ms
25,172 KB
testcase_03 AC 25 ms
25,040 KB
testcase_04 AC 25 ms
25,304 KB
testcase_05 AC 27 ms
27,128 KB
testcase_06 AC 25 ms
25,088 KB
testcase_07 AC 26 ms
27,276 KB
testcase_08 AC 25 ms
25,176 KB
testcase_09 AC 25 ms
25,176 KB
testcase_10 AC 26 ms
27,208 KB
testcase_11 AC 25 ms
27,264 KB
testcase_12 AC 25 ms
24,916 KB
testcase_13 AC 25 ms
24,880 KB
testcase_14 AC 24 ms
23,220 KB
testcase_15 AC 25 ms
25,052 KB
testcase_16 AC 27 ms
27,128 KB
testcase_17 AC 25 ms
25,132 KB
testcase_18 AC 26 ms
25,260 KB
testcase_19 AC 26 ms
25,216 KB
testcase_20 AC 26 ms
25,168 KB
testcase_21 AC 25 ms
25,172 KB
testcase_22 AC 26 ms
27,268 KB
testcase_23 AC 29 ms
27,720 KB
testcase_24 AC 29 ms
25,560 KB
testcase_25 AC 29 ms
25,648 KB
testcase_26 AC 30 ms
27,228 KB
testcase_27 AC 30 ms
25,828 KB
testcase_28 AC 32 ms
25,940 KB
testcase_29 AC 32 ms
26,324 KB
testcase_30 AC 31 ms
25,948 KB
testcase_31 AC 30 ms
26,072 KB
testcase_32 AC 32 ms
26,028 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 NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        for (var i = 0; i < n; ++i) --a[i];
        var pos = new int[n];
        for (var i = 0; i < n; ++i) pos[a[i]] = i;
        var res = 0;
        var visited = new bool[n];
        for (var i = 0; i < n; ++i)
        {
            if (visited[i]) continue;
            var begin = a[i];
            var cur = begin;
            var count = 0;
            while (!visited[cur])
            {
                visited[cur] = true;
                cur = pos[cur];
                ++count;
            }
            res += count - 1;
        }
        WriteLine(res % 2 == 0 ? 1 : -1);
    }
}
0