結果

問題 No.603 hel__world (2)
ユーザー uwiuwi
提出日時 2017-12-03 02:29:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 6,119 bytes
コンパイル時間 4,711 ms
コンパイル使用メモリ 84,336 KB
実行使用メモリ 109,068 KB
最終ジャッジ日時 2024-05-06 04:31:05
合計ジャッジ時間 16,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
44,756 KB
testcase_01 AC 140 ms
43,840 KB
testcase_02 AC 104 ms
41,792 KB
testcase_03 AC 132 ms
43,684 KB
testcase_04 AC 138 ms
43,476 KB
testcase_05 AC 127 ms
43,988 KB
testcase_06 AC 44 ms
36,980 KB
testcase_07 AC 149 ms
44,420 KB
testcase_08 AC 82 ms
40,232 KB
testcase_09 AC 81 ms
40,244 KB
testcase_10 AC 124 ms
42,616 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 94 ms
41,712 KB
testcase_15 AC 102 ms
41,724 KB
testcase_16 AC 114 ms
42,188 KB
testcase_17 AC 114 ms
41,824 KB
testcase_18 AC 105 ms
41,392 KB
testcase_19 AC 105 ms
41,916 KB
testcase_20 AC 725 ms
54,124 KB
testcase_21 AC 743 ms
54,236 KB
testcase_22 AC 182 ms
44,700 KB
testcase_23 AC 201 ms
45,572 KB
testcase_24 AC 216 ms
45,952 KB
testcase_25 AC 774 ms
107,656 KB
testcase_26 WA -
testcase_27 AC 742 ms
106,224 KB
testcase_28 AC 525 ms
92,392 KB
testcase_29 WA -
testcase_30 AC 226 ms
47,484 KB
testcase_31 AC 78 ms
39,232 KB
testcase_32 AC 211 ms
48,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
import java.util.Arrays;
import java.util.InputMismatchException;

public class N603X {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		MathContext cx = new MathContext(100, RoundingMode.FLOOR);
//		long o = 1000000000000000000L/3;
//		tr((o%1000003)*(o%1000003)*((o+1)%1000003)%1000003);
		long[] a = new long[26];
		for(int i = 0;i < 26;i++){
			a[i] = nl();
		}
		char[] t = ns().toCharArray();
		int m = t.length;
		int[][] fs = new int[m][];
		int p = 0;
		for(int i = 0;i < t.length;){
			int j = i;
			while(j < t.length && t[j] == t[i])j++;
			fs[p++] = new int[]{t[i]-'a', j-i};
			i = j;
		}
		
		long ans = 1;
		int[] b = new int[p];
		for(int c = 0;c < 26;c++){
			int q = 0;
			for(int i = 0;i < p;i++){
				if(fs[i][0] == c){
					b[q++] = fs[i][1];
				}
			}
			if(q == 0)continue;
			Arrays.sort(b, 0, q);
			int[] lcs = new int[q];
			int[] lfs = new int[q];
			int r = 0;
			int num = 0;
			for(int i = 0;i < q;){
				int j = i;
				while(j < q && b[j] == b[i])j++;
				lcs[r] = b[i];
				lfs[r] = j-i;
				num += j-i;
				r++;
				i = j;
			}
			if(a[c] < num){
				out.println(0);
				return;
			}
			BigDecimal low = BigDecimal.valueOf(1e-7);
			BigDecimal high = BigDecimal.valueOf(1e19);
			for(int rep = 0;rep < 100;rep++){
				BigDecimal h = low.add(high).divide(BigDecimal.valueOf(2), cx);
				// (x+c)/x >= h
				// c/x >= h-1
				// x <= c/(h-1)
				double alld = 0;
				long all = 0;
				for(int j = 0;j < r;j++){
					BigDecimal z = BigDecimal.valueOf(lcs[j]).multiply(h, cx);
					long k = z.longValue();
					alld += z.doubleValue() * lfs[j];
					all += k * lfs[j];
				}
				if(all <= a[c] && alld <= 2e18){
					low = h;
				}else{
					high = h;
				}
			}
			BigDecimal h = low;
			long all = 0;
			BigDecimal chamax = BigDecimal.valueOf(-1);
			int argj = -1;
			int mod = 1000003;
			for(int j = 0;j < r;j++){
				long k = BigDecimal.valueOf(lcs[j]).multiply(h, cx).longValue();
				all += k * lfs[j];
				BigDecimal v = BigDecimal.valueOf(k+lcs[j]).divide(BigDecimal.valueOf(k), cx);
				if(v.compareTo(chamax) > 0){
					chamax = v;
					argj = j;
				}
				ans = ans * pow(C(k, lcs[j], mod), lfs[j], mod) % mod;
			}
			long k = BigDecimal.valueOf(lcs[argj]).multiply(h, cx).longValue();
			long rem = a[c] - (long)all;
			ans = ans * invl(pow(C(k, lcs[argj], mod), rem, mod), mod) % mod;
			ans = ans * pow(C(k+1, lcs[argj], mod), rem, mod) % mod;
		}
		out.println(ans);
	}
	
	static long C(long n, long r, int mod)
	{
		n %= mod;
		if(n < 0 || r < 0 || r > n)return 0;
		long ret = 1;
		long den = 1;
		for(int i = 1;i <= r;i++){
			ret = ret * (n-i+1) % mod;
			den = den * i % mod;
		}
		return ret * invl(den, mod) % mod;
	}
	
	public static long invl(long a, long mod) {
		long b = mod;
		long p = 1, q = 0;
		while (b > 0) {
			long c = a / b;
			long d;
			d = a;
			a = b;
			b = d % b;
			d = p;
			p = q;
			q = d - c * q;
		}
		return p < 0 ? p + mod : p;
	}

	
	public static long pow(long a, long n, long mod) {
				a %= mod;
		long ret = 1;
		int x = 63 - Long.numberOfLeadingZeros(n);
		for (; x >= 0; x--) {
			ret = ret * ret % mod;
			if (n << 63 - x < 0)
				ret = ret * a % mod;
		}
		return ret;
	}

	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//		Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){
//			@Override
//			public void run() {
//				long s = System.currentTimeMillis();
//				solve();
//				out.flush();
//				if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//			}
//		};
//		t.start();
//		t.join();
	}
	
	public static void main(String[] args) throws Exception { new N603X().run(); }
	
	private byte[] inbuf = new byte[1024];
	public int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private long[] nal(int n)
	{
		long[] a = new long[n];
		for(int i = 0;i < n;i++)a[i] = nl();
		return a;
	}
	
	private char[][] nm(int n, int m) {
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[][] nmi(int n, int m) {
		int[][] map = new int[n][];
		for(int i = 0;i < n;i++)map[i] = na(m);
		return map;
	}
	
	private int ni() { return (int)nl(); }
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0