結果

問題 No.603 hel__world (2)
ユーザー tailstails
提出日時 2017-12-10 23:26:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,045 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 174,040 KB
実行使用メモリ 35,884 KB
最終ジャッジ日時 2024-05-07 23:54:54
合計ジャッジ時間 12,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
11,264 KB
testcase_01 AC 233 ms
11,264 KB
testcase_02 AC 231 ms
11,392 KB
testcase_03 AC 232 ms
11,264 KB
testcase_04 AC 231 ms
11,392 KB
testcase_05 AC 229 ms
11,392 KB
testcase_06 AC 229 ms
11,264 KB
testcase_07 AC 230 ms
11,392 KB
testcase_08 AC 224 ms
11,264 KB
testcase_09 AC 227 ms
11,392 KB
testcase_10 AC 225 ms
11,264 KB
testcase_11 AC 381 ms
14,196 KB
testcase_12 AC 386 ms
14,324 KB
testcase_13 AC 379 ms
14,192 KB
testcase_14 AC 228 ms
11,264 KB
testcase_15 AC 229 ms
11,264 KB
testcase_16 AC 229 ms
11,392 KB
testcase_17 AC 229 ms
11,264 KB
testcase_18 AC 225 ms
11,264 KB
testcase_19 AC 229 ms
11,392 KB
testcase_20 AC 275 ms
12,416 KB
testcase_21 AC 272 ms
12,288 KB
testcase_22 AC 229 ms
11,264 KB
testcase_23 AC 227 ms
11,264 KB
testcase_24 AC 231 ms
11,264 KB
testcase_25 AC 519 ms
14,200 KB
testcase_26 AC 525 ms
14,324 KB
testcase_27 AC 518 ms
14,196 KB
testcase_28 AC 585 ms
35,884 KB
testcase_29 AC 277 ms
12,416 KB
testcase_30 AC 255 ms
11,904 KB
testcase_31 WA -
testcase_32 AC 274 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:12:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   12 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define M 1000003
#define m(t)r=r*fac[(t)%M]%M*fac[(t)/M%M]%M*fac[(t)/M/M]%M

char T[M];
long S[26],x[M],y[M];
int inv[M],fac[M];
long r=1;

main(){
	fac[0]=1;
	for(int i=1;i<M;++i){
		fac[i]=1ll*fac[i-1]*i%M;
		long e,s=M,t=i,u=1,v=0;
		while(s){
			e=t/s;
			t-=e*s;
			u-=e*v;
			swap(t,s);
			swap(u,v);
		}
		inv[i]=(u+M)%M;
	}
	for(int c=0;c<26;++c)cin>>S[c];
	cin>>T;
	for(int c=0;c<26;++c){
		priority_queue<pair<double,int>> q;
		int n=0,s=0,t=-1;
		for(int i=0;!i||T[i-1];++i){
			if(T[i]==c+'a'){
				if(t<0)t=i;
			}else{
				if(t>=0){
					int xl=i-t;
					x[n]=xl;
					++n;
					s+=xl;
					if(s>S[c])r=0;
					t=-1;
				}
			}
		}
		if(s) {
			long d=S[c]/s;
			for(int j=0;j<n;++j){
				y[j]=x[j]*d;
				q.push(make_pair(1.*~y[j]/x[j],j));
			}
			for(S[c]%=s;S[c]--;){
				int j=q.top().second;q.pop();
				++y[j];
				q.push(make_pair(1.*~y[j]/x[j],j));
			}
			for(int j=0;j<n;++j){
				m(y[j]);
				r=inv[r];
				m(y[j]-x[j]);
				m(x[j]);
				r=inv[r];
			}
		}
	}
	cout<<r;
}
0