結果

問題 No.482 あなたの名は
ユーザー 14番14番
提出日時 2017-02-12 01:59:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,987 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 107,904 KB
実行使用メモリ 54,952 KB
最終ジャッジ日時 2024-06-09 11:33:50
合計ジャッジ時間 5,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,072 KB
testcase_01 AC 31 ms
19,200 KB
testcase_02 AC 29 ms
19,328 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 31 ms
19,328 KB
testcase_05 AC 30 ms
19,200 KB
testcase_06 AC 30 ms
18,944 KB
testcase_07 AC 35 ms
19,584 KB
testcase_08 AC 34 ms
19,456 KB
testcase_09 AC 34 ms
19,456 KB
testcase_10 AC 34 ms
19,712 KB
testcase_11 AC 35 ms
19,584 KB
testcase_12 AC 33 ms
19,456 KB
testcase_13 AC 36 ms
19,584 KB
testcase_14 AC 37 ms
19,712 KB
testcase_15 AC 157 ms
54,948 KB
testcase_16 AC 147 ms
54,936 KB
testcase_17 AC 150 ms
54,944 KB
testcase_18 AC 148 ms
54,944 KB
testcase_19 AC 156 ms
54,940 KB
testcase_20 AC 158 ms
54,940 KB
testcase_21 AC 160 ms
54,952 KB
testcase_22 AC 160 ms
54,944 KB
testcase_23 AC 159 ms
54,944 KB
testcase_24 AC 168 ms
54,940 KB
testcase_25 AC 154 ms
54,940 KB
testcase_26 AC 167 ms
54,816 KB
testcase_27 AC 169 ms
54,936 KB
testcase_28 AC 162 ms
54,820 KB
testcase_29 AC 150 ms
54,944 KB
testcase_30 AC 30 ms
19,328 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 System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Text;
 
public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        bool ans = this.GetAns();
        Console.WriteLine(ans?"YES":"NO");
    }

    private bool GetAns() {
        long[] inpt = Reader.ReadLine().Split(' ').Select(a=>long.Parse(a)).ToArray();
        int itemCount = (int)inpt[0];
        long nokori = inpt[1];

        int[] items = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();

        Dictionary<int, int> numIndex = new Dictionary<int, int>();
        Dictionary<int, int> indexNum = new Dictionary<int, int>();

        for(int i=0; i<items.Length; i++) {
            indexNum.Add(i, items[i]);
            numIndex.Add(items[i], i);
        }

        for(int i=1; i<=itemCount; i++) {
            if(items[i-1] == i) {
                continue;
            }
            if(nokori <= 0) {
                return false;
            }
            int idx = numIndex[i];
            int num = items[i-1];

            items[i-1] = items[idx];
            items[idx] = num;

            numIndex[i] = i-1;
            numIndex[num] = idx;
            indexNum[i-1] = i;
            indexNum[idx] = num;
            nokori--;
        }

        return nokori%2==0;
    }




    public class Reader {
        public static bool IsDebug = true;
        private static System.IO.StringReader SReader;
        private static string InitText = @"







";
        public static string ReadLine() {
            if(IsDebug) {
                if(SReader == null) {
                    SReader = new System.IO.StringReader(InitText.Trim());
                }
                return SReader.ReadLine();
            } else {
                return Console.ReadLine();
            }
        }
    }
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0