結果

問題 No.1496 不思議な数え上げ
ユーザー 沙耶花沙耶花
提出日時 2021-04-30 23:08:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,514 bytes
コンパイル時間 4,012 ms
コンパイル使用メモリ 268,380 KB
実行使用メモリ 14,160 KB
最終ジャッジ日時 2024-07-19 02:56:57
合計ジャッジ時間 14,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 RE -
testcase_03 AC 198 ms
14,028 KB
testcase_04 AC 199 ms
14,024 KB
testcase_05 AC 196 ms
14,032 KB
testcase_06 AC 215 ms
14,024 KB
testcase_07 AC 206 ms
14,028 KB
testcase_08 AC 207 ms
14,160 KB
testcase_09 AC 207 ms
14,032 KB
testcase_10 AC 208 ms
14,024 KB
testcase_11 AC 217 ms
14,028 KB
testcase_12 AC 206 ms
14,028 KB
testcase_13 AC 194 ms
13,900 KB
testcase_14 AC 211 ms
14,028 KB
testcase_15 AC 193 ms
14,028 KB
testcase_16 AC 198 ms
14,028 KB
testcase_17 AC 205 ms
14,028 KB
testcase_18 AC 213 ms
14,028 KB
testcase_19 AC 218 ms
14,028 KB
testcase_20 AC 224 ms
14,032 KB
testcase_21 AC 206 ms
14,028 KB
testcase_22 AC 214 ms
14,024 KB
testcase_23 AC 205 ms
14,028 KB
testcase_24 AC 222 ms
13,900 KB
testcase_25 AC 220 ms
14,024 KB
testcase_26 AC 209 ms
14,032 KB
testcase_27 AC 207 ms
14,028 KB
testcase_28 AC 204 ms
14,032 KB
testcase_29 AC 204 ms
14,032 KB
testcase_30 AC 205 ms
14,028 KB
testcase_31 AC 203 ms
14,024 KB
testcase_32 AC 183 ms
12,888 KB
testcase_33 AC 97 ms
8,672 KB
testcase_34 AC 89 ms
8,292 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 182 ms
13,036 KB
testcase_37 AC 100 ms
8,908 KB
testcase_38 AC 94 ms
8,632 KB
testcase_39 AC 135 ms
11,172 KB
testcase_40 AC 75 ms
7,676 KB
testcase_41 AC 145 ms
11,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

int N;
vector<int> P;
vector<long long> A;
vector<long long> ans;

void check(vector<pair<int,long long>> X,vector<pair<int,long long>> Y){
	rep(i,X.size()){
		if(X[i].first == Inf)continue;
		int ok = -1,ng = Y.size();
		while(ng-ok>1){
			int mid = (ok+ng)/2;
			bool f = true;
			if(Y[mid].first < X[i].first)f=false;
			if(Y[mid].second+X[i].second > A[X[i].first-1])f=false;
			if(f)ok = mid;
			else ng = mid;
		}
		ans[X[i].first-1] += ok+1;
	}
}

void dfs(int l,int r){
	//cout<<l<<','<<r<<endl;
	if(r-l==1){
		if(A[P[l]-1]>=P[l])ans[P[l]-1]++;
		return;
	}
	
	if(r-l==0)return;
	
	int m = (l+r)/2;
//	cout<<l<<','<<r<<endl;
	vector<pair<int,long long>> R(1,make_pair(P[m],P[m]));
	for(int i=m+1;i<r;i++){
		R.emplace_back(min(R.back().first,P[i]),R.back().second + P[i]);
	}
	//cout<<l<<','<<r<<endl;
	vector<pair<int,long long>> L(1,make_pair(P[m-1],P[m-1]));
	
	for(int i=m-2;i>=l;i--){
		L.emplace_back(min(L.back().first,P[i]),L.back().second + P[i]);
	}
	//cout<<l<<','<<r<<endl;
	check(R,L);
	check(L,R);
	//cout<<l<<','<<r<<endl;
	dfs(l,m);
	dfs(m,r);
	
}


int main(){
	
	cin>>N;
	
	P.resize(N),A.resize(N),ans.resize(N,0);
	
	rep(i,N){
		scanf("%lld",&P[i]);
	}
	
	rep(i,N){
		scanf("%lld",&A[i]);
		
	}
	
	dfs(0,N);
	
	rep(i,N){
		printf("%lld\n",ans[i]);
	}
	
	
	
    return 0;
}
0