結果

問題 No.1438 Broken Drawers
ユーザー bluemegane
提出日時 2021-03-27 07:42:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 1,549 ms
コンパイル使用メモリ 110,828 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-11-29 08:05:20
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class P
{
    public int a { get; set; }
    public int id { get; set; }
}

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var ps = new P[n];
        var ok = new bool[n];
        string[] line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++)
        {
            ps[i] = new P { a = int.Parse(line[i]), id = i };
            ok[i] = true;
        }
        getAns(n, ps, ok);
    }
    static void getAns(int n, P[] ps, bool[] ok)
    {
        ps = ps.OrderBy(x => x.a).ToArray();
        var count = 0;
        for (int i = 0; i < n; i++)
        {
            if (ok[ps[i].id])
            {
                count++;
                if (ps[i].id != 0) ok[ps[i].id - 1] = false;
            }
        }
        Console.WriteLine(count);
    }
}
0