結果

問題 No.871 かえるのうた
ユーザー 👑 obakyanobakyan
提出日時 2019-08-30 21:42:06
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-05-07 16:21:18
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 69 ms
10,880 KB
testcase_15 AC 68 ms
10,880 KB
testcase_16 AC 78 ms
12,032 KB
testcase_17 AC 66 ms
10,496 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 71 ms
10,880 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 26 ms
6,016 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 36 ms
7,680 KB
testcase_30 AC 57 ms
10,368 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 46 ms
9,216 KB
testcase_33 AC 61 ms
10,880 KB
testcase_34 AC 16 ms
5,376 KB
testcase_35 AC 38 ms
7,424 KB
testcase_36 AC 51 ms
9,728 KB
testcase_37 AC 31 ms
6,528 KB
testcase_38 AC 70 ms
11,136 KB
testcase_39 AC 67 ms
10,880 KB
testcase_40 AC 39 ms
8,960 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 45 ms
9,984 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 4 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, k = io.read("*n", "*n")
local x, a = {}, {}
for i = 1, n do
  x[i] = 0LL + io.read("*n")
end
for i = 1, n do
  a[i] = 0LL + io.read("*n")
end

local tasks = {k}
local l, r = k, k
while 0 < #tasks do
  local idx = tasks[#tasks]
  table.remove(tasks)
  for ir = r + 1, n do
    if x[ir] <= x[idx] + a[idx] then
      table.insert(tasks, ir)
      r = ir
    else
      break
    end
  end
  for il = l - 1, 1, -1 do
    if x[idx] - a[idx] <= x[il] then
      table.insert(tasks, il)
      l = il
    else
      break
    end
  end
end
print(r - l + 1)
0