結果

問題 No.871 かえるのうた
ユーザー umezoumezo
提出日時 2024-01-23 03:46:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 203,696 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-23 03:46:23
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  ll n,k;
  cin>>n>>k;
  k--;
  vector<ll> X(n),A(n);
  rep(i,n) cin>>X[i];
  rep(i,n) cin>>A[i];
 
  int ln=k,rn=k;
  ll l=X[k]-A[k],r=X[k]+A[k];
  while(1){
    int c=0;
    if(ln-1>=0 && l<=X[ln-1]){
      c++;
      ln--;
      l=min(l,X[ln]-A[ln]);
      r=max(r,X[ln]+A[ln]);
    }
    if(rn+1<n && X[rn+1]<=r){
      c++;
      rn++;
      l=min(l,X[rn]-A[rn]);
      r=max(r,X[rn]+A[rn]);
    }
    if(c==0) break;
  }
  cout<<rn-ln+1<<endl;
  
  return 0;
}
0