結果
| 問題 | No.603 hel__world (2) | 
| コンテスト | |
| ユーザー |  kmjp | 
| 提出日時 | 2017-12-03 22:48:05 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 2,187 bytes | 
| コンパイル時間 | 1,737 ms | 
| コンパイル使用メモリ | 171,760 KB | 
| 実行使用メモリ | 25,988 KB | 
| 最終ジャッジ日時 | 2024-11-30 21:11:23 | 
| 合計ジャッジ時間 | 7,218 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 29 WA * 1 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------
ll S[30];
string T;
int L;
vector<int> V[26];
int num[26];
ll mo=1000003;
ll modpow(ll a, ll n = mo-2) {
	ll r=1;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}
struct comp {
	bool operator()(const pair<ll,ll> a, const pair<ll,ll> b) const {
		return (__int128_t)a.first*b.second < (__int128_t)a.second*b.first;
	}
};
ll comb(ll a,ll b) {
	ll p=1;
	ll q=1;
	while(b) {
		(p*=a%mo)%=mo;
		(q*=b%mo)%=mo;
		a--;
		b--;
	}
	return p*modpow(q)%mo;
}
ll hoge(ll s,vector<int> p) {
	if(p.empty()) return 1;
	sort(ALL(p));
	
	
	ll a=1,b=1;
	priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,comp> Q;
	ll sum=0;
	FORR(r,p) sum+=r;
	ll pre=s/sum;
	s%=sum;
	FORR(r,p) {
		(a *= comb(r*pre,r))%=mo;
		Q.push(make_pair(r*pre+1,r*(pre-1)+1));
	}
	int dif=0;
	
	while(s--) {
		auto r=Q.top();
		Q.pop();
		
		ll x=r.first;
		while(x%mo==0) {
			dif++;
			x/=mo;
		}
		a = x%mo*a%mo;
		x=r.second;
		while(x%mo==0) {
			dif--;
			x/=mo;
		}
		b = x%mo*b%mo;
		
		r.first++;
		r.second++;
		Q.push(r);
	}
	/*
	while(Q.size()) {
		auto a=Q.top();
		Q.pop();
		cout<<a.first<<" "<<a.second<<endl;
	}
	*/
	if(dif) return 0;
	return a*modpow(b)%mo;
}
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	FOR(i,26) cin>>S[i];
	cin>>T;
	L=T.size();
	
	V[T[0]-'a'].push_back(1);
	FOR(i,L-1) {
		if(T[i]==T[i+1]) V[T[i+1]-'a'].back()++;
		else V[T[i+1]-'a'].push_back(1);
	}
	FOR(i,L) num[T[i]-'a']++;
	
	__int128 ret=1;
	FOR(i,26) if(num[i]>S[i]) return _P("0\n");
	FOR(i,26) (ret*=hoge(S[i],V[i]))%=mo;
	
	cout<<(ll)ret<<endl;
}
int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
            
            
            
        