結果

問題 No.871 かえるのうた
ユーザー risujirohrisujiroh
提出日時 2019-08-30 21:24:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 1,506 ms
コンパイル使用メモリ 168,268 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 16:37:06
合計ジャッジ時間 3,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 31 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 35 ms
5,376 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 12 ms
5,376 KB
testcase_30 AC 20 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 16 ms
5,376 KB
testcase_36 AC 21 ms
5,376 KB
testcase_37 AC 13 ms
5,376 KB
testcase_38 AC 28 ms
5,376 KB
testcase_39 WA -
testcase_40 AC 11 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 11 ms
5,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  int n, k; cin >> n >> k, --k;
  V<lint> x(n); for (auto&& e : x) cin >> e;
  V<lint> a(n); for (auto&& e : a) cin >> e;
  int res = -1;
  lint t = x[k] + a[k];
  for (int i = k; i < n; ++i) {
    if (t < x[i]) break;
    ++res;
    t = max(t, x[i] + a[i]);
  }
  t = x[k] - a[k];
  for (int i = k; i >= 0; --i) {
    if (x[i] < t) break;
    ++res;
    t = min(t, x[i] - a[i]);
  }
  cout << res << '\n';
}
0