結果

問題 No.603 hel__world (2)
ユーザー tailstails
提出日時 2017-12-10 23:26:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,045 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 174,320 KB
実行使用メモリ 39,944 KB
最終ジャッジ日時 2024-11-30 20:58:17
合計ジャッジ時間 12,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
16,848 KB
testcase_01 AC 231 ms
16,980 KB
testcase_02 AC 229 ms
13,916 KB
testcase_03 AC 226 ms
13,956 KB
testcase_04 AC 231 ms
13,888 KB
testcase_05 AC 231 ms
17,176 KB
testcase_06 AC 231 ms
14,268 KB
testcase_07 AC 231 ms
14,132 KB
testcase_08 AC 231 ms
14,212 KB
testcase_09 AC 227 ms
14,204 KB
testcase_10 AC 227 ms
14,328 KB
testcase_11 AC 380 ms
16,824 KB
testcase_12 AC 386 ms
16,504 KB
testcase_13 AC 377 ms
16,356 KB
testcase_14 AC 227 ms
14,236 KB
testcase_15 AC 227 ms
14,052 KB
testcase_16 AC 230 ms
15,612 KB
testcase_17 AC 232 ms
15,328 KB
testcase_18 AC 231 ms
17,116 KB
testcase_19 AC 229 ms
14,196 KB
testcase_20 AC 278 ms
15,364 KB
testcase_21 AC 271 ms
15,656 KB
testcase_22 AC 225 ms
14,232 KB
testcase_23 AC 232 ms
15,488 KB
testcase_24 AC 227 ms
13,932 KB
testcase_25 AC 531 ms
16,216 KB
testcase_26 AC 524 ms
18,980 KB
testcase_27 AC 511 ms
16,004 KB
testcase_28 AC 574 ms
39,944 KB
testcase_29 AC 274 ms
14,600 KB
testcase_30 AC 254 ms
14,980 KB
testcase_31 WA -
testcase_32 AC 276 ms
14,704 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