結果

問題 No.871 かえるのうた
ユーザー kekurekekure
提出日時 2019-10-12 21:54:35
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 1,300 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 114,064 KB
実行使用メモリ 826,916 KB
最終ジャッジ日時 2024-05-07 01:36:12
合計ジャッジ時間 8,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,072 KB
testcase_01 AC 29 ms
18,816 KB
testcase_02 AC 29 ms
19,072 KB
testcase_03 AC 29 ms
19,072 KB
testcase_04 AC 29 ms
19,072 KB
testcase_05 AC 29 ms
19,072 KB
testcase_06 AC 29 ms
19,200 KB
testcase_07 AC 29 ms
18,944 KB
testcase_08 AC 35 ms
19,968 KB
testcase_09 AC 36 ms
20,352 KB
testcase_10 AC 33 ms
19,584 KB
testcase_11 AC 34 ms
19,712 KB
testcase_12 AC 47 ms
22,400 KB
testcase_13 AC 36 ms
20,352 KB
testcase_14 AC 136 ms
44,088 KB
testcase_15 AC 140 ms
44,336 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FreeWorks
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] line = Console.ReadLine().Split(' ');
            int n = int.Parse(line[0]);
            int k = int.Parse(line[1]);
            long[] X = Console.ReadLine().Split(' ').Select(x => long.Parse(x)).ToArray();
            long[] A = Console.ReadLine().Split(' ').Select(x => long.Parse(x)).ToArray();

            bool[] check = new bool[n];


            Queue<int> q = new Queue<int>();
            q.Enqueue(k - 1);
            int cnt = 0;
            while (q.Count > 0)
            {
                int i = q.Dequeue();
                if (check[i]) continue;
                check[i] = true;
                cnt++;
                long rightRange = X[i] + A[i];
                long leftRange = X[i] - A[i];

                for (int x = i + 1; x < n && X[x] <= rightRange; x++)
                {
                    q.Enqueue(x);
                }

                for (int x = i - 1; x >= 0 && leftRange <= X[x]; x--)
                {
                    q.Enqueue(x);
                }
            }

            Console.WriteLine(cnt);
        }
    }
}
0