結果

問題 No.852 連続部分文字列
ユーザー kotatsugamekotatsugame
提出日時 2019-07-27 20:52:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,931 ms / 3,153 ms
コード長 648 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 70,644 KB
実行使用メモリ 111,016 KB
最終ジャッジ日時 2024-07-02 11:16:07
合計ジャッジ時間 27,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 39 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 63 ms
6,656 KB
testcase_16 AC 38 ms
5,504 KB
testcase_17 AC 54 ms
6,144 KB
testcase_18 AC 67 ms
6,912 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 32 ms
5,376 KB
testcase_21 AC 69 ms
6,912 KB
testcase_22 AC 23 ms
5,376 KB
testcase_23 AC 47 ms
6,016 KB
testcase_24 AC 28 ms
5,376 KB
testcase_25 AC 45 ms
5,760 KB
testcase_26 AC 67 ms
6,528 KB
testcase_27 AC 40 ms
5,504 KB
testcase_28 AC 53 ms
6,144 KB
testcase_29 AC 68 ms
6,784 KB
testcase_30 AC 14 ms
5,376 KB
testcase_31 AC 71 ms
6,912 KB
testcase_32 AC 75 ms
7,296 KB
testcase_33 AC 2,166 ms
106,136 KB
testcase_34 AC 2,182 ms
106,536 KB
testcase_35 AC 2,149 ms
107,168 KB
testcase_36 AC 2,162 ms
107,048 KB
testcase_37 AC 2,154 ms
106,784 KB
testcase_38 AC 2,160 ms
107,172 KB
testcase_39 AC 2,540 ms
111,016 KB
testcase_40 AC 2,145 ms
107,176 KB
testcase_41 AC 2,164 ms
107,176 KB
testcase_42 AC 2,931 ms
107,172 KB
testcase_43 AC 1,449 ms
107,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<iomanip>
using namespace std;
string s;
int prv[26][1<<20],now[26];
double ans;
main()
{
	cin>>s;
	for(int i=0;i<26;i++)now[i]=-1;
	for(int i=0;i<s.size();i++)
	{
		for(int j=0;j<26;j++)prv[j][i]=now[j];
		int cnt=1<<s[i]-'a';
		int p=i;
		while(p>=0)
		{
			if(__builtin_popcount(cnt)==26)
			{
				ans+=26*(p+1);
				break;
			}
			int id=-1;
			for(int j=0;j<26;j++)
			{
				if(cnt>>j&1)continue;
				if(id<0||prv[id][p]<prv[j][p])id=j;
			}
			ans+=__builtin_popcount(cnt)*(p-prv[id][p]);
			p=prv[id][p];
			if(id>=0)
			{
				cnt|=1<<id;
			}
		}
		now[s[i]-'a']=i;
	}
	cout<<ans*2/s.size()/(s.size()+1)<<endl;
}
0