結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
5,632 KB
testcase_01 AC 40 ms
9,040 KB
testcase_02 AC 40 ms
9,088 KB
testcase_03 AC 40 ms
9,040 KB
testcase_04 AC 37 ms
9,088 KB
testcase_05 AC 35 ms
9,088 KB
testcase_06 AC 15 ms
6,656 KB
testcase_07 AC 9 ms
6,528 KB
testcase_08 AC 26 ms
8,784 KB
testcase_09 AC 29 ms
7,112 KB
testcase_10 AC 21 ms
8,448 KB
testcase_11 AC 19 ms
7,296 KB
testcase_12 AC 24 ms
8,704 KB
testcase_13 AC 22 ms
6,528 KB
testcase_14 AC 10 ms
5,248 KB
testcase_15 AC 19 ms
6,400 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 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.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+(n-1)*3);
	}
}
0