結果

問題 No.871 かえるのうた
ユーザー kenta255kenta255
提出日時 2019-08-30 22:09:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,523 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 220,768 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-05-07 16:23:31
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 22 ms
5,888 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 173 ms
15,872 KB
testcase_15 AC 170 ms
15,744 KB
testcase_16 AC 199 ms
15,872 KB
testcase_17 AC 154 ms
14,976 KB
testcase_18 AC 26 ms
5,784 KB
testcase_19 AC 166 ms
15,744 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 63 ms
7,808 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 15 ms
5,632 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 71 ms
11,392 KB
testcase_30 AC 122 ms
12,416 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 101 ms
11,520 KB
testcase_33 AC 138 ms
15,744 KB
testcase_34 AC 33 ms
6,656 KB
testcase_35 AC 81 ms
11,008 KB
testcase_36 AC 114 ms
13,568 KB
testcase_37 AC 70 ms
8,320 KB
testcase_38 AC 165 ms
14,848 KB
testcase_39 AC 163 ms
14,336 KB
testcase_40 AC 82 ms
11,776 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 75 ms
13,340 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define P pair<ll,ll>
#define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I)
#define FORR(I,A,B) for(ll I = ll((B)-1); I >= ll(A); --I)
#define TO(x,t,f) ((x)?(t):(f))
#define SORT(x) (sort(x.begin(),x.end())) // 0 2 2 3 4 5 8 9
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin()) //xi>=v  x is sorted
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin()) //xi>v  x is sorted
#define NUM(x,v) (POSU(x,v)-POSL(x,v))  //x is sorted
#define REV(x) (reverse(x.begin(),x.end())) //reverse
ll gcd(ll a,ll b){if(a%b==0)return b;return gcd(b,a%b);}
ll lcm(ll a,ll b){ll c=gcd(a,b);return ((a/c)*(b/c)*c);}
#define NEXTP(x) next_permutation(x.begin(),x.end())
const ll INF=ll(1e18)+ll(7);
const ll MOD=1000000007LL;
#define out(a) cout<<fixed<<setprecision((a))




int main(){
	ll N,K;
	cin >> N >> K;
	K--;
	ll ans = 0;
	set<ll> setX;
	map<ll,ll> indexX;
	vector<ll> A(N),X(N);
	FOR(i,0,N){
		cin >> X[i];
		if(i!=K)setX.insert(X[i]);
		indexX[X[i]] = i;
	}
	FOR(i,0,N)cin >> A[i];



	queue<ll> nex;
	vector<bool> did(N,0);
	nex.push(K);
	did[K] = true;
	while(nex.size()){
		ans++;
		ll nowi = nex.front();
		nex.pop();
		ll nowX = X[nowi];
		ll nowA = A[nowi];
		vector<ll> usedX;
		auto it = setX.upper_bound(nowX-nowA-1LL);
		auto la = setX.upper_bound(nowX+nowA);
		while(it != la){
			ll XXX = *it;
			nex.push(indexX[XXX]);
			usedX.push_back(XXX);
			++it;
		}
		for(auto xxx:usedX){
			setX.erase(xxx);
		}
	}
	cout << ans << endl;
}
0