結果

問題 No.1014 competitive fighting
ユーザー kotatsugamekotatsugame
提出日時 2020-03-25 02:37:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 1,331 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 80,420 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-07-07 13:00:34
合計ジャッジ時間 12,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,600 KB
testcase_01 AC 5 ms
9,728 KB
testcase_02 AC 6 ms
9,600 KB
testcase_03 AC 5 ms
9,728 KB
testcase_04 AC 5 ms
9,600 KB
testcase_05 AC 326 ms
21,376 KB
testcase_06 AC 319 ms
21,376 KB
testcase_07 AC 329 ms
21,376 KB
testcase_08 AC 330 ms
21,376 KB
testcase_09 AC 330 ms
21,504 KB
testcase_10 AC 296 ms
31,104 KB
testcase_11 AC 272 ms
17,068 KB
testcase_12 AC 326 ms
21,504 KB
testcase_13 AC 154 ms
15,232 KB
testcase_14 AC 140 ms
14,976 KB
testcase_15 AC 176 ms
15,488 KB
testcase_16 AC 12 ms
9,984 KB
testcase_17 AC 62 ms
12,160 KB
testcase_18 AC 261 ms
19,968 KB
testcase_19 AC 316 ms
21,120 KB
testcase_20 AC 118 ms
14,100 KB
testcase_21 AC 247 ms
19,328 KB
testcase_22 AC 199 ms
16,256 KB
testcase_23 AC 78 ms
12,488 KB
testcase_24 AC 82 ms
12,416 KB
testcase_25 AC 23 ms
10,368 KB
testcase_26 AC 244 ms
19,328 KB
testcase_27 AC 63 ms
12,160 KB
testcase_28 AC 71 ms
12,260 KB
testcase_29 AC 9 ms
9,728 KB
testcase_30 AC 326 ms
21,120 KB
testcase_31 AC 258 ms
19,584 KB
testcase_32 AC 6 ms
9,856 KB
testcase_33 AC 22 ms
10,112 KB
testcase_34 AC 207 ms
16,512 KB
testcase_35 AC 275 ms
17,280 KB
testcase_36 AC 191 ms
17,092 KB
testcase_37 AC 11 ms
9,856 KB
testcase_38 AC 170 ms
13,952 KB
testcase_39 AC 88 ms
11,776 KB
testcase_40 AC 163 ms
13,696 KB
testcase_41 AC 119 ms
13,184 KB
testcase_42 AC 265 ms
16,896 KB
testcase_43 AC 18 ms
10,112 KB
testcase_44 AC 235 ms
16,768 KB
testcase_45 AC 141 ms
13,568 KB
testcase_46 AC 30 ms
10,496 KB
testcase_47 AC 82 ms
11,620 KB
testcase_48 AC 201 ms
16,384 KB
testcase_49 AC 13 ms
9,856 KB
testcase_50 AC 261 ms
16,896 KB
testcase_51 AC 144 ms
13,440 KB
testcase_52 AC 15 ms
9,856 KB
testcase_53 AC 323 ms
21,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:40:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   40 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int N;
int A[1<<17],B[1<<17],C[1<<17];
int invi[1<<17],invinvi[1<<17];
vector<int>G[2<<17];
int n;
long memo[2<<17];
bool vis[2<<17];
void add_edge(int a,int b,int fm,int k,int l,int r)
{
	if(b<=l||r<=a)return;
	else if(a<=l&&r<=b)
	{
		G[fm].push_back(k);
	}
	else
	{
		add_edge(a,b,fm,k*2+1,l,(l+r)/2);
		add_edge(a,b,fm,k*2+2,(l+r)/2,r);
	}
}
long dfs(int u)
{
	if(vis[u])return memo[u];
	memo[u]=-1;
	vis[u]=true;
	long t=0;
	for(int v:G[u])
	{
		long k=dfs(v);
		if(k==-1)return-1;
		t=max(t,k);
	}
	if(u>=n-1)t+=B[invinvi[u-(n-1)]];
	return memo[u]=t;
}
main()
{
	cin>>N;
	n=1;
	while(n<N)n<<=1;
	for(int i=0;i<n-1;i++)
	{
		G[i].push_back(i*2+1);
		G[i].push_back(i*2+2);
	}
	vector<pair<int,int> >ai(N);
	for(int i=0;i<N;i++)
	{
		cin>>A[i]>>B[i]>>C[i];
		ai[i]=make_pair(A[i],i);
	}
	sort(ai.begin(),ai.end());
	for(int i=0;i<N;i++)invi[invinvi[i]=ai[i].second]=i;
	for(int i=0;i<N;i++)
	{
		int R=upper_bound(ai.begin(),ai.end(),make_pair(B[i]-C[i],N))-ai.begin();
		if(invi[i]<R)
		{
			add_edge(0,invi[i],n-1+invi[i],0,0,n);
			add_edge(invi[i]+1,R,n-1+invi[i],0,0,n);
		}
		else
		{
			add_edge(0,R,n-1+invi[i],0,0,n);
		}
	}
	for(int i=0;i<N;i++)
	{
		long ans=dfs(n-1+invi[i]);
		if(ans==-1)cout<<"BAN"<<endl;
		else cout<<ans<<endl;
	}
}
0