結果

問題 No.370 道路の掃除
ユーザー mbanmban
提出日時 2017-01-10 03:55:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 2,224 bytes
コンパイル時間 1,059 ms
コンパイル使用メモリ 112,448 KB
実行使用メモリ 26,516 KB
最終ジャッジ日時 2024-12-18 00:21:23
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
23,984 KB
testcase_01 AC 26 ms
25,996 KB
testcase_02 AC 27 ms
24,420 KB
testcase_03 AC 26 ms
24,412 KB
testcase_04 AC 25 ms
22,200 KB
testcase_05 AC 25 ms
24,032 KB
testcase_06 AC 27 ms
24,160 KB
testcase_07 AC 27 ms
21,936 KB
testcase_08 AC 27 ms
26,252 KB
testcase_09 AC 27 ms
24,244 KB
testcase_10 AC 27 ms
24,160 KB
testcase_11 AC 27 ms
26,324 KB
testcase_12 AC 29 ms
26,388 KB
testcase_13 AC 30 ms
24,364 KB
testcase_14 AC 27 ms
24,036 KB
testcase_15 AC 26 ms
24,080 KB
testcase_16 AC 27 ms
24,244 KB
testcase_17 AC 29 ms
26,252 KB
testcase_18 AC 29 ms
24,156 KB
testcase_19 AC 28 ms
24,240 KB
testcase_20 AC 28 ms
21,944 KB
testcase_21 AC 28 ms
24,204 KB
testcase_22 AC 29 ms
26,180 KB
testcase_23 AC 30 ms
24,468 KB
testcase_24 AC 29 ms
26,256 KB
testcase_25 AC 28 ms
26,516 KB
testcase_26 AC 29 ms
24,032 KB
testcase_27 AC 28 ms
24,104 KB
testcase_28 AC 30 ms
26,204 KB
testcase_29 AC 30 ms
24,164 KB
testcase_30 AC 27 ms
24,028 KB
testcase_31 AC 25 ms
24,468 KB
testcase_32 AC 27 ms
24,416 KB
testcase_33 AC 26 ms
24,032 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.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;


class Magatro
{
    static Scanner sc = new Scanner();
    static int N, M;
    static List<int> L=new List<int>(), R=new List<int>();
    static void Main()
    {
        N = sc.NextInt();
        M = sc.NextInt();
        for(int i = 0; i < M; i++)
        {
            int next = sc.NextInt();
            if (next >= 0)
            {
                R.Add(next);
            }
            else
            {
                L.Add(next);
            }
        }
        R.Sort();
        L.Sort((a, b) => a.CompareTo(b) * -1);
        int ans = int.MaxValue;

        for(int r = 0; r <= N; r++)
        {
            int l = N - r;
            if (R.Count >= r && L.Count >= l)
            {
                if (r == 0)
                {
                    ans = Math.Min(ans, Math.Abs(L[l - 1]));
                }
                else if (l == 0)
                {
                    ans = Math.Min(ans, R[r - 1]);
                }
                else
                {
                    int min = Math.Min(R[r - 1], Math.Abs(L[l - 1]));
                    int max = Math.Max(R[r - 1], Math.Abs(L[l - 1]));
                    ans = Math.Min(ans, min * 2 + max);
                }

            }
        }
        Console.WriteLine(ans);
    }
}

public class Scanner
{
    public string[] S;
    private int Index;
    private char Separator;
    public Scanner(char separator=' ')
    {
        Index = 0;
        Separator = separator;
    }
    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    } 
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}
0