結果
問題 | No.295 hel__world |
ユーザー | LayCurse |
提出日時 | 2015-10-23 23:09:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,277 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 165,072 KB |
実行使用メモリ | 16,372 KB |
最終ジャッジ日時 | 2024-07-23 11:45:17 |
合計ジャッジ時間 | 10,209 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
7,632 KB |
testcase_01 | AC | 3 ms
9,688 KB |
testcase_02 | AC | 3 ms
9,684 KB |
testcase_03 | AC | 2 ms
7,632 KB |
testcase_04 | AC | 2 ms
7,632 KB |
testcase_05 | AC | 3 ms
7,508 KB |
testcase_06 | AC | 2 ms
7,632 KB |
testcase_07 | AC | 3 ms
9,556 KB |
testcase_08 | AC | 2 ms
7,500 KB |
testcase_09 | AC | 3 ms
7,636 KB |
testcase_10 | AC | 2 ms
7,628 KB |
testcase_11 | AC | 3 ms
7,632 KB |
testcase_12 | AC | 3 ms
7,632 KB |
testcase_13 | AC | 3 ms
7,504 KB |
testcase_14 | AC | 3 ms
7,504 KB |
testcase_15 | AC | 3 ms
7,632 KB |
testcase_16 | AC | 3 ms
9,680 KB |
testcase_17 | AC | 3 ms
7,504 KB |
testcase_18 | AC | 3 ms
7,632 KB |
testcase_19 | AC | 2 ms
7,636 KB |
testcase_20 | AC | 2 ms
7,632 KB |
testcase_21 | AC | 2 ms
7,760 KB |
testcase_22 | AC | 3 ms
9,552 KB |
testcase_23 | AC | 3 ms
9,556 KB |
testcase_24 | AC | 3 ms
9,680 KB |
testcase_25 | AC | 3 ms
7,632 KB |
testcase_26 | AC | 3 ms
7,632 KB |
testcase_27 | WA | - |
testcase_28 | AC | 174 ms
7,632 KB |
testcase_29 | AC | 352 ms
7,500 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 60 ms
8,140 KB |
testcase_33 | AC | 60 ms
8,268 KB |
testcase_34 | AC | 61 ms
8,400 KB |
testcase_35 | AC | 3 ms
7,504 KB |
testcase_36 | AC | 2 ms
7,628 KB |
testcase_37 | AC | 3 ms
9,684 KB |
testcase_38 | AC | 2 ms
7,632 KB |
testcase_39 | AC | 2 ms
7,632 KB |
testcase_40 | AC | 3 ms
9,680 KB |
testcase_41 | AC | 3 ms
7,504 KB |
testcase_42 | AC | 2 ms
7,628 KB |
testcase_43 | AC | 3 ms
7,628 KB |
testcase_44 | AC | 2 ms
7,764 KB |
testcase_45 | AC | 2 ms
7,632 KB |
testcase_46 | AC | 3 ms
7,504 KB |
testcase_47 | TLE | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘void reader(double*)’: main.cpp:15:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | void reader(double *x){scanf("%lf",x);} | ~~~~~^~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) #define mygc(c) (c)=getchar_unlocked() #define mypc(c) putchar_unlocked(c) #define ll long long #define ull unsigned ll void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} void reader(ll *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} void reader(double *x){scanf("%lf",x);} int reader(char c[]){int i,s=0;for(;;){mygc(i);if(i!=' '&&i!='\n'&&i!='\r'&&i!='\t'&&i!=EOF) break;}c[s++]=i;for(;;){mygc(i);if(i==' '||i=='\n'||i=='\r'||i=='\t'||i==EOF) break;c[s++]=i;}c[s]='\0';return s;} template <class T, class S> void reader(T *x, S *y){reader(x);reader(y);} template <class T, class S, class U> void reader(T *x, S *y, U *z){reader(x);reader(y);reader(z);} template <class T, class S, class U, class V> void reader(T *x, S *y, U *z, V *w){reader(x);reader(y);reader(z);reader(w);} void writer(int x, char c){int s=0,m=0;char f[10];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);} void writer(ll x, char c){int s=0,m=0;char f[20];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);} void writer(double x, char c){printf("%.15f",x);mypc(c);} void writer(const char c[]){int i;for(i=0;c[i]!='\0';i++)mypc(c[i]);} void writer(const char x[], char c){int i;for(i=0;x[i]!='\0';i++)mypc(x[i]);mypc(c);} template<class T> void writerLn(T x){writer(x,'\n');} template<class T, class S> void writerLn(T x, S y){writer(x,' ');writer(y,'\n');} template<class T, class S, class U> void writerLn(T x, S y, U z){writer(x,' ');writer(y,' ');writer(z,'\n');} template<class T> void writerArr(T x[], int n){int i;if(!n){mypc('\n');return;}rep(i,n-1)writer(x[i],' ');writer(x[n-1],'\n');} char memarr[17000000]; void *mem = memarr; #define MD 1000000007 #define INF 5000000000000000000LL template <class T> struct heapEx { int *hp, *place, size; T *val; void malloc(int N){hp=(int*)std::malloc(N*sizeof(int));place=(int*)std::malloc(N*sizeof(int));val=(T*)std::malloc(N*sizeof(T));} void free(){free(hp);free(place);free(val);} void* malloc(int N, void *workMemory){hp=(int*)workMemory;workMemory=(void*)(hp+N);place=(int*)workMemory;workMemory=(void*)(place+N);val=(T*)workMemory;workMemory=(void*)(val+N);return workMemory;} void init(int N){int i;size=0;rep(i,N)place[i]=-1;} void up(int n){int m;while(n){m=(n-1)/2;if(val[hp[m]]<=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}} void down(int n){int m;for(;;){m=2*n+1;if(m>=size)break;if(m+1<size&&val[hp[m]]>val[hp[m+1]])m++;if(val[hp[m]]>=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}} void change(int n, T v){T f=val[n];val[n]=v;if(place[n]==-1){place[n] = size;hp[size++] = n;up(place[n]);}else{if(f < v) down(place[n]); else if(f > v) up(place[n]);}} int pop(void){int res=hp[0];place[res]=-1;size--;if(size)hp[0]=hp[size],place[hp[0]]=0,down(0);return res;} }; ll comb(ll a, ll b){ ll i, res = 1; b = min(b, a-b); rep(i,b){ if((double)res * (a-i) / (i+1) > INF) return INF; res *= a-i; res /= i+1; } return res; } ll mul(ll a, ll b){ if((double) a * b > INF) return INF; return a * b; } ll cnt[26], cnt2[26]; int N; char S[1000100]; int arr[1000000]; heapEx<double> heap; ll now[1000000]; ll solve(ll tot, int arr[], int sz){ int i, j, k; ll A, B, C1, C2, D1, D2; ll res, rest; if(sz==0){ return 1; } if(sz==1){ return comb(tot, arr[0]); } if(sz==2){ A = arr[0]; B = tot - arr[1]; res = 0; while(A < B-10){ C1 = (A+A+B) / 3; C2 = (A+B+B) / 3; D1 = mul(comb(C1,arr[0]), comb(tot-C1,arr[1])); D2 = mul(comb(C2,arr[0]), comb(tot-C2,arr[1])); res = max(res, max(D1,D2)); if(D1 < D2) A = C1; else B = C2; } while(A <= B){ D1 = mul(comb(A,arr[0]), comb(tot-A,arr[1])); res = max(res, D1); A++; } return res; } heap.init(sz); res = 1; rest = tot; rep(i,sz) rest -= arr[i], now[i] = arr[i]; rep(i,sz) heap.change(i, (double)comb(now[i],arr[i]) / (double)comb(now[i]+1,arr[i])); while(rest){ i = heap.hp[0]; now[i]++; heap.change(i, (double)comb(now[i],arr[i]) / (double)comb(now[i]+1,arr[i])); rest--; } rep(i,sz) res = mul(res, comb(now[i],arr[i])); return res; } int main(){ int i, j, k, sz; ll res = 1, tmp; heap.malloc(1000001); rep(i,26) reader(cnt+i); N = reader(S); rep(i,N){ S[i] -= 'a'; cnt2[S[i]]++; } rep(i,26) if(cnt[i] < cnt2[i]){ writerLn(0); return 0; } rep(k,26){ sz = 0; rep(i,N) if(S[i]==k){ arr[sz] = 1; while(i+1<N && S[i+1]==k) arr[sz]++, i++; sz++; } tmp = solve(cnt[k], arr, sz); // printf("%d (%c) : %lld\n",k,'a'+k,tmp); // writerArr(arr,sz); if((double)res * tmp > 4.7e18 || res * tmp >= (1ULL<<62)){ writerLn("hel"); return 0; } res *= tmp; } writerLn(res); return 0; }