結果

問題 No.631 Noelちゃんと電車旅行
ユーザー tailstails
提出日時 2021-12-22 21:35:16
言語 cLay
(20240714-1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 175,008 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-10-02 09:51:36
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
5,632 KB
testcase_01 AC 33 ms
9,088 KB
testcase_02 AC 32 ms
9,088 KB
testcase_03 AC 33 ms
9,088 KB
testcase_04 AC 34 ms
9,040 KB
testcase_05 AC 32 ms
9,088 KB
testcase_06 AC 15 ms
6,656 KB
testcase_07 AC 9 ms
6,528 KB
testcase_08 AC 25 ms
8,832 KB
testcase_09 AC 29 ms
7,424 KB
testcase_10 AC 21 ms
8,448 KB
testcase_11 AC 18 ms
7,296 KB
testcase_12 AC 23 ms
8,832 KB
testcase_13 AC 19 ms
6,400 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 18 ms
6,272 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct segt{
	ll a,b;
};

segtree_ph<segt>t;

inline segt segtree_ph_func(segt a,segt b){
	return {max(a.a,a.b+b.a),a.b+b.b};
}

{
	ll@n;
	t.walloc(n,1);
	rep(i,n-1){
		ll@u;
		t[i+1]=segt{u-3*i,0};
	}
	t[0].b=(n-1)*3;
	t.build();
	ll@m;
	rep(m){
		ll@l,@r,@d;
		--l;
		t.change(l,{t[l].a,t[l].b+d});
		t.change(r,{t[r].a,t[r].b-d});
		wt(t.val[1].a);
	}
}
0