結果
問題 | No.871 かえるのうた |
ユーザー | kuhaku |
提出日時 | 2019-11-03 23:07:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,216 bytes |
コンパイル時間 | 1,535 ms |
コンパイル使用メモリ | 168,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 23:35:28 |
合計ジャッジ時間 | 5,319 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 129 ms
5,376 KB |
testcase_17 | AC | 105 ms
5,376 KB |
testcase_18 | AC | 18 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 10 ms
5,376 KB |
testcase_21 | AC | 46 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 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 37 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 21 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | AC | 75 ms
5,376 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 31 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 31 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i, m, n) for(int (i) = (m); (i) < (n); (i)++) #define rep(i, n) FOR(i, 0, n) #define repn(i, n) FOR(i, 1, n+1) #define co(n) cout << (n) << endl #define cosp(n) cout << (n) << ' ' #define setp(n) cout << fixed << setprecision(n); #define all(s) (s).begin(), (s).end() #define pb push_back #define mp make_pair #define fs first #define sc second typedef long long ll; typedef pair<int, int> P; const ll INF = 1e9+1; const ll LINF = 1e18+1; const ll MOD = 1e9+7; //const ll MOD = 998244353; const double PI = acos(-1); const double EPS = 1e-9; int main(void){ int n, k; cin >> n >> k; vector<ll> x(n); vector<ll> a(n); rep(i, n) cin >> x[i]; rep(i, n) cin >> a[i]; int ans = 1, left = k-2, right = k; ll left_x = x[k-1]-a[k-1], right_x = x[k-1]+a[k-1]; while(x[left] >= left_x && x[right] <= right_x && ans < n){ if(left >= 0 && x[left] >= left_x){ left_x = min(left_x, x[left]-a[left]); right_x = max(right_x, x[left]+a[left]); ans++; left--; } if(right < n && x[right] <= right_x){ left_x = min(left_x, x[right]-a[right]); right_x = max(right_x, x[right]+a[right]); ans++; right++; } } co(ans); return 0; }