結果

問題 No.397 NO MORE KADOMATSU
ユーザー 14番14番
提出日時 2016-07-16 00:15:13
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,763 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 112,316 KB
実行使用メモリ 49,080 KB
最終ジャッジ日時 2023-09-24 00:19:21
合計ジャッジ時間 8,650 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Text;
using System.Linq;

class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int matsuCount = int.Parse(Reader.ReadLine());
        int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();

        inpt.ToList().ForEach(a=>this.Matsu.Add(this.Matsu.Count, a));

        StringBuilder ans = new StringBuilder();
        int conv = 0;
        for(int i=0; i<matsuCount; i++) {
            int min = this.Matsu.Where(a=>a.Key >= i).OrderBy(a=>a.Value).First().Key;
            if(i != min) {
                conv++;
                ans.Append(i + " " + min);
                int tmp = this.Matsu[i];
                this.Matsu[i] = this.Matsu[min];
                this.Matsu[min] = tmp;
            }
        }
        Console.WriteLine(conv);
        Console.Write(ans.ToString());
        string dummy = Reader.ReadLine();
    }

    private Dictionary<int, int> Matsu = new Dictionary<int,int>();
    private Dictionary<int, int> Goal = new Dictionary<int, int>();

    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"



6
1 3 2 2 3 1
-1

 
";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }

    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0