結果

問題 No.871 かえるのうた
ユーザー kotamanegikotamanegi
提出日時 2019-08-30 21:30:31
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,892 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 149,564 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 19:24:53
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 117 ms
6,940 KB
testcase_15 AC 112 ms
6,944 KB
testcase_16 AC 120 ms
6,944 KB
testcase_17 AC 98 ms
6,940 KB
testcase_18 AC 16 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 43 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 7 ms
6,940 KB
testcase_27 AC 10 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 36 ms
6,940 KB
testcase_30 AC 66 ms
6,944 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 52 ms
6,944 KB
testcase_33 WA -
testcase_34 AC 20 ms
6,944 KB
testcase_35 AC 49 ms
6,940 KB
testcase_36 AC 72 ms
6,940 KB
testcase_37 AC 44 ms
6,944 KB
testcase_38 AC 99 ms
6,940 KB
testcase_39 WA -
testcase_40 AC 31 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 30 ms
6,944 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 1 ms
6,944 KB
testcase_48 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*

This Submission is to determine how many 120/240 min const. delivery point there are.

//info
120 req. steps <= 5
*/
#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <cassert>
#include<fstream>
#include <unordered_map>
#include <cstdlib>
#include <complex>
#include <cctype>
#include <bitset>
using namespace std;
typedef string::const_iterator State;
#define Ma_PI 3.141592653589793
#define eps 0.00000001
#define LONG_INF 1e18
#define GOLD 1.61803398874989484820458
#define MAX_MOD 1000000007
#define MOD 1000000007
#define seg_size 262144
#define REP(a,b) for(long long a = 0;a < b;++a)

unsigned long xor128() {
	static unsigned long x = time(NULL), y = 362436069, z = 521288629, w = 88675123;
	unsigned long t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}
int main() {
#define int long long
	int n, k;
	cin >> n >> k;
	vector<pair<long long, long long>> inputs;
	REP(i, n) {
		long long a;
		cin >> a;
		inputs.push_back(make_pair(a, 0));
	}
	REP(i, n) {
		cin >> inputs[i].second;
	}
	k--;
	int ans = 1;
	long long bot = inputs[k].first - inputs[k].second;
	for (int i = k - 1; i >= 0; --i) {
		if (bot > inputs[i].first) {
			break;
		}
		ans++;
		bot = min(bot, inputs[i].first - inputs[i].second);
	}
	bot = inputs[k].first + inputs[k].second;
	for (int i = k + 1; i < n; ++i) {
		if (inputs[i].first > bot) {
			break;
		}
		ans++;
		bot = max(bot, inputs[i].first + inputs[i].second);
	}
	cout << ans << endl;
	return 0;
}
0