結果

問題 No.2833 Count Taiko Results
ユーザー kotatsugamekotatsugame
提出日時 2024-08-03 00:08:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 918 ms
コンパイル使用メモリ 85,364 KB
実行使用メモリ 13,572 KB
最終ジャッジ日時 2024-08-03 00:08:09
合計ジャッジ時間 8,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 373 ms
13,132 KB
testcase_35 AC 172 ms
8,560 KB
testcase_36 AC 133 ms
12,672 KB
testcase_37 AC 343 ms
13,420 KB
testcase_38 AC 61 ms
8,364 KB
testcase_39 AC 95 ms
12,816 KB
testcase_40 AC 235 ms
12,940 KB
testcase_41 AC 339 ms
13,200 KB
testcase_42 AC 431 ms
13,284 KB
testcase_43 AC 372 ms
13,072 KB
testcase_44 AC 260 ms
13,564 KB
testcase_45 AC 221 ms
12,828 KB
testcase_46 AC 288 ms
8,584 KB
testcase_47 AC 214 ms
12,644 KB
testcase_48 AC 254 ms
8,516 KB
testcase_49 AC 271 ms
13,472 KB
testcase_50 AC 576 ms
13,464 KB
testcase_51 AC 299 ms
13,464 KB
testcase_52 AC 142 ms
13,480 KB
testcase_53 AC 435 ms
13,464 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 55 ms
13,572 KB
testcase_56 AC 55 ms
13,452 KB
testcase_57 AC 56 ms
13,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
#include<atcoder/segtree>
#include<atcoder/lazysegtree>
using namespace std;
using mint=atcoder::modint998244353;
mint op(mint a,mint b){return a+b;}
mint e(){return mint::raw(0);}
mint mp(mint f,mint x){return f*x;}
mint id(){return mint::raw(1);}
int N;
int A[2<<17],B[2<<17];
mint f(int K)
{
	atcoder::lazy_segtree<mint,op,e,mint,mp,mp,id>seg(N);
	vector<mint>initA(N),initAB(N);
	for(int i=0;i<N;i++)initA[i]=A[i],initAB[i]=A[i]+B[i];
	atcoder::segtree<mint,mp,id>segA(initA),segAB(initAB);
	mint ans=0;
	for(int i=0;i+K<=N;i++)
	{
		mint cur=segAB.prod(0,i)-seg.prod(0,i);
		seg.set(i,cur);
		int l=max(0,i-K+1);
		seg.apply(0,l,A[i]+B[i]);
		seg.apply(l,i+1,A[i]);
		ans+=cur*segA.prod(i,i+K)*segAB.prod(i+K,N);
	}
	return ans;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int K;
	cin>>N>>K;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<N;i++)cin>>B[i];
	cout<<(f(K)-f(K+1)).val()<<endl;
}
0