結果

問題 No.765 ukuku 2
ユーザー tailstails
提出日時 2018-12-14 02:28:43
言語 cLay
(20240714-1)
結果
AC  
実行時間 72 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 173,488 KB
実行使用メモリ 10,312 KB
最終ジャッジ日時 2024-07-05 13:14:46
合計ジャッジ時間 5,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,668 KB
testcase_01 AC 3 ms
7,628 KB
testcase_02 AC 3 ms
7,624 KB
testcase_03 AC 2 ms
7,628 KB
testcase_04 AC 2 ms
7,504 KB
testcase_05 AC 3 ms
7,504 KB
testcase_06 AC 3 ms
7,632 KB
testcase_07 AC 3 ms
9,544 KB
testcase_08 AC 2 ms
7,624 KB
testcase_09 AC 3 ms
9,672 KB
testcase_10 AC 3 ms
7,628 KB
testcase_11 AC 2 ms
7,628 KB
testcase_12 AC 2 ms
7,620 KB
testcase_13 AC 3 ms
7,628 KB
testcase_14 AC 3 ms
9,544 KB
testcase_15 AC 2 ms
7,504 KB
testcase_16 AC 3 ms
7,504 KB
testcase_17 AC 3 ms
9,672 KB
testcase_18 AC 3 ms
9,672 KB
testcase_19 AC 2 ms
7,496 KB
testcase_20 AC 2 ms
7,624 KB
testcase_21 AC 2 ms
7,632 KB
testcase_22 AC 3 ms
7,632 KB
testcase_23 AC 3 ms
9,540 KB
testcase_24 AC 3 ms
9,548 KB
testcase_25 AC 3 ms
7,624 KB
testcase_26 AC 3 ms
7,628 KB
testcase_27 AC 3 ms
7,496 KB
testcase_28 AC 3 ms
7,628 KB
testcase_29 AC 2 ms
7,500 KB
testcase_30 AC 40 ms
8,936 KB
testcase_31 AC 41 ms
8,924 KB
testcase_32 AC 36 ms
8,644 KB
testcase_33 AC 19 ms
9,100 KB
testcase_34 AC 19 ms
9,228 KB
testcase_35 AC 56 ms
9,616 KB
testcase_36 AC 55 ms
8,720 KB
testcase_37 AC 57 ms
9,104 KB
testcase_38 AC 70 ms
8,848 KB
testcase_39 AC 72 ms
8,720 KB
testcase_40 AC 40 ms
8,932 KB
testcase_41 AC 46 ms
8,948 KB
testcase_42 AC 47 ms
9,088 KB
testcase_43 AC 45 ms
10,056 KB
testcase_44 AC 44 ms
10,308 KB
testcase_45 AC 54 ms
8,696 KB
testcase_46 AC 44 ms
9,800 KB
testcase_47 AC 48 ms
10,312 KB
testcase_48 AC 48 ms
8,832 KB
testcase_49 AC 51 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

char s[3d5];
ll n,t[2d5],u[2d5],v[2d5],h[128];

ll nib(ll a,ll b){
	ll c=min(a,n-1-b)+1;
	ll d=0;
	while(d<c-1){
		ll e=(c+d)/2;
		if(t[a-e]-u[b+e]==(t[a]-u[b])*v[e]){
			d=e;
		}else{
			c=e;
		}
	}
	return d;
}

{
	rd(s);
	n=strlen(s);
	{
		Rand r;
		h[0..127]=r.get();

		ll d;
		d=0; t[n-(1..n)]=d=d*3+h[s[n-(1..)]];
		d=0; u[0..n-1]=d=d*3+h[s[0..]];
		d=1; (v[0..n-1]=d, d*=3);
	}
	{
		ll r=0;
		rep(i,n*2-1){
			ll a,b,d;
			d=nib(a=(i+1)/2,b=i/2);
			if(a-d>0)   r>?=b+1-a+(d+nib(a-d-1,b+d))*2;
			if(b+d<n-1) r>?=b+1-a+(d+nib(a-d,b+d+1))*2;
		}
		wt(r);
	}
}
0