結果

問題 No.1014 competitive fighting
ユーザー kmjpkmjp
提出日時 2020-03-20 22:45:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 1,964 bytes
コンパイル時間 1,585 ms
コンパイル使用メモリ 176,824 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-07-07 12:53:48
合計ジャッジ時間 14,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
60,800 KB
testcase_01 AC 72 ms
60,800 KB
testcase_02 AC 73 ms
60,800 KB
testcase_03 AC 71 ms
60,736 KB
testcase_04 AC 68 ms
60,672 KB
testcase_05 AC 297 ms
70,784 KB
testcase_06 AC 312 ms
70,856 KB
testcase_07 AC 298 ms
70,724 KB
testcase_08 AC 315 ms
70,912 KB
testcase_09 AC 294 ms
70,912 KB
testcase_10 AC 299 ms
87,168 KB
testcase_11 AC 224 ms
64,000 KB
testcase_12 AC 295 ms
70,784 KB
testcase_13 AC 174 ms
65,408 KB
testcase_14 AC 168 ms
65,152 KB
testcase_15 AC 188 ms
65,792 KB
testcase_16 AC 81 ms
61,056 KB
testcase_17 AC 116 ms
62,464 KB
testcase_18 AC 270 ms
68,864 KB
testcase_19 AC 288 ms
70,656 KB
testcase_20 AC 153 ms
64,000 KB
testcase_21 AC 232 ms
68,224 KB
testcase_22 AC 201 ms
66,944 KB
testcase_23 AC 122 ms
63,104 KB
testcase_24 AC 136 ms
63,104 KB
testcase_25 AC 90 ms
61,312 KB
testcase_26 AC 236 ms
68,096 KB
testcase_27 AC 112 ms
62,464 KB
testcase_28 AC 118 ms
62,848 KB
testcase_29 AC 80 ms
60,928 KB
testcase_30 AC 285 ms
70,656 KB
testcase_31 AC 241 ms
68,480 KB
testcase_32 AC 76 ms
60,928 KB
testcase_33 AC 92 ms
61,056 KB
testcase_34 AC 201 ms
63,104 KB
testcase_35 AC 235 ms
63,872 KB
testcase_36 AC 187 ms
63,104 KB
testcase_37 AC 81 ms
60,928 KB
testcase_38 AC 178 ms
62,720 KB
testcase_39 AC 126 ms
61,696 KB
testcase_40 AC 166 ms
62,592 KB
testcase_41 AC 139 ms
62,080 KB
testcase_42 AC 238 ms
63,744 KB
testcase_43 AC 84 ms
61,056 KB
testcase_44 AC 218 ms
63,488 KB
testcase_45 AC 160 ms
62,464 KB
testcase_46 AC 88 ms
61,056 KB
testcase_47 AC 122 ms
61,696 KB
testcase_48 AC 192 ms
62,848 KB
testcase_49 AC 79 ms
60,928 KB
testcase_50 AC 220 ms
63,488 KB
testcase_51 AC 158 ms
62,464 KB
testcase_52 AC 80 ms
60,800 KB
testcase_53 AC 305 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int A[101010],B[101010],C[101010];
pair<int,int> P[201010];
int id[101010];


int RL[1<<20],RR[1<<20];
vector<int> E[1<<20];
ll dp[1<<20];
ll X[1<<20];

void add_edge(int cur,int L,int R,int from) {
	if(RR[cur]<=L) return;
	if(R<=RL[cur]) return;
	
	if(L<=RL[cur]&&RR[cur]<=R) {
		E[from].push_back(cur);
	}
	else {
		add_edge(cur*2,L,R,from);
		add_edge(cur*2+1,L,R,from);
	}
}

ll dfs(int cur) {
	if(dp[cur]>=0) return dp[cur];
	if(dp[cur]==-2) return dp[cur]=1LL<<60;
	dp[cur]=-2;
	ll ret=0;
	FORR(e,E[cur]) ret=max(ret,dfs(e));
	return dp[cur]=ret+X[cur];
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>A[i]>>B[i]>>C[i];
		P[i]={A[i],i};
	}
	sort(P,P+N);
	FOR(i,1<<19) {
		RL[(1<<19)+i]=i;
		RR[(1<<19)+i]=i+1;
	}
	for(i=(1<<19)-1;i>=1;i--) {
		E[i].push_back(2*i);
		E[i].push_back(2*i+1);
		RL[i]=RL[2*i];
		RR[i]=RR[2*i+1];
	}
	FOR(i,N) {
		id[P[i].second]=i;
	}
	FOR(i,N) {
		y=id[i];
		X[y+(1<<19)]=B[i];
		x=lower_bound(P,P+N,make_pair(B[i]-C[i]+1,0))-P;
		if(x<=y) {
			if(x) add_edge(1,0,x,y+(1<<19));
		}
		else {
			if(y) add_edge(1,0,y,y+(1<<19));
			if(y+1<x) add_edge(1,y+1,x,y+(1<<19));
		}
	}
	
	MINUS(dp);
	FOR(i,N) {
		ll ret=dfs((1<<19)+id[i]);
		if(ret>=1LL<<60) {
			cout<<"BAN"<<endl;
		}
		else {
			cout<<ret<<endl;
		}
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0