結果
| 問題 |
No.871 かえるのうた
|
| コンテスト | |
| ユーザー |
NOSS
|
| 提出日時 | 2019-08-30 21:42:17 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,077 bytes |
| コンパイル時間 | 1,506 ms |
| コンパイル使用メモリ | 169,992 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-21 22:24:39 |
| 合計ジャッジ時間 | 4,375 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 WA * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;
typedef pair<ll, P> P3;
typedef pair<P, P> PP;
constexpr ll MOD = ll(1e9 + 7);
constexpr int IINF = INT_MAX;
constexpr ll LLINF = LLONG_MAX;
constexpr int MAX_N = int(1e5) + 5;
constexpr double EPS = 1e-9;
constexpr int di[] = {0, 1, 0, -1}, dj[] = {1, 0, -1, 0};
#define REP(i, n) for (int i = 0; i < n; i++)
#define REPR(i, n) for (int i = n; i >= 0; i--)
#define SORT(v) sort((v).begin(), (v).end())
#define SORTR(v) sort((v).rbegin(), (v).rend())
#define ALL(v) (v).begin(), (v).end()
int main() {
ll n, k;
cin >> n >> k;
vector<ll> x(n), a(n);
for(int i=0;i<n;i++){
cin >> x[i];
}
for(int i=0;i<n;i++){
cin >> a[i];
}
ll l = k-1, r = k-1;
for(ll pos = x[r]; r<n-1; r++){
pos = max(pos, x[r]+a[r]);
if(x[r+1] > pos) break;
}
for(ll pos = x[l]; l>0; l--){
pos = min(pos, x[l]-a[l]);
if(x[l-1] < pos) break;
}
cout << r-l+1 << endl;
return 0;
}
NOSS