結果

問題 No.871 かえるのうた
ユーザー kekurekekure
提出日時 2019-10-12 22:14:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,467 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 52,684 KB
最終ジャッジ日時 2024-05-07 16:34:31
合計ジャッジ時間 5,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
27,196 KB
testcase_01 AC 26 ms
25,008 KB
testcase_02 AC 25 ms
25,028 KB
testcase_03 AC 26 ms
25,264 KB
testcase_04 AC 26 ms
26,940 KB
testcase_05 AC 27 ms
27,064 KB
testcase_06 AC 26 ms
25,160 KB
testcase_07 AC 27 ms
25,260 KB
testcase_08 AC 32 ms
25,800 KB
testcase_09 AC 33 ms
26,052 KB
testcase_10 AC 32 ms
27,728 KB
testcase_11 AC 33 ms
26,052 KB
testcase_12 AC 42 ms
27,056 KB
testcase_13 AC 33 ms
26,076 KB
testcase_14 AC 122 ms
50,188 KB
testcase_15 AC 124 ms
50,556 KB
testcase_16 AC 128 ms
51,252 KB
testcase_17 AC 118 ms
48,584 KB
testcase_18 AC 42 ms
27,440 KB
testcase_19 AC 128 ms
52,684 KB
testcase_20 AC 38 ms
26,428 KB
testcase_21 AC 69 ms
41,956 KB
testcase_22 AC 26 ms
25,232 KB
testcase_23 AC 27 ms
25,284 KB
testcase_24 AC 27 ms
25,024 KB
testcase_25 AC 31 ms
23,604 KB
testcase_26 AC 35 ms
26,192 KB
testcase_27 AC 36 ms
27,016 KB
testcase_28 AC 26 ms
25,156 KB
testcase_29 AC 72 ms
41,024 KB
testcase_30 AC 87 ms
45,520 KB
testcase_31 AC 31 ms
25,900 KB
testcase_32 AC 78 ms
42,044 KB
testcase_33 AC 110 ms
48,516 KB
testcase_34 AC 47 ms
29,708 KB
testcase_35 AC 75 ms
43,104 KB
testcase_36 AC 90 ms
47,328 KB
testcase_37 AC 67 ms
37,880 KB
testcase_38 AC 116 ms
50,116 KB
testcase_39 AC 110 ms
48,636 KB
testcase_40 AC 61 ms
32,108 KB
testcase_41 AC 26 ms
27,404 KB
testcase_42 AC 62 ms
33,372 KB
testcase_43 AC 26 ms
27,196 KB
testcase_44 AC 26 ms
24,900 KB
testcase_45 AC 31 ms
27,712 KB
testcase_46 AC 26 ms
27,404 KB
testcase_47 AC 25 ms
27,196 KB
testcase_48 AC 27 ms
25,148 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.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;
            int max_i = k - 1;
            int min_i = k - 1;
            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 = max_i + 1; x < n && X[x] <= rightRange; x++)
                {
                    q.Enqueue(x);
                    max_i = Math.Max(max_i, x);
                }

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

            }

            Console.WriteLine(cnt);
        }
    }
}
0