結果

問題 No.603 hel__world (2)
ユーザー 37zigen37zigen
提出日時 2017-12-21 06:38:53
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,484 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 83,136 KB
実行使用メモリ 92,904 KB
最終ジャッジ日時 2024-05-10 01:23:02
合計ジャッジ時間 13,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
65,092 KB
testcase_01 AC 173 ms
65,200 KB
testcase_02 AC 176 ms
64,996 KB
testcase_03 AC 174 ms
65,092 KB
testcase_04 AC 172 ms
65,084 KB
testcase_05 AC 173 ms
64,996 KB
testcase_06 AC 172 ms
65,148 KB
testcase_07 AC 180 ms
65,320 KB
testcase_08 RE -
testcase_09 AC 175 ms
65,096 KB
testcase_10 AC 172 ms
65,300 KB
testcase_11 AC 505 ms
89,008 KB
testcase_12 AC 467 ms
83,328 KB
testcase_13 AC 493 ms
88,144 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 210 ms
65,188 KB
testcase_20 AC 363 ms
77,192 KB
testcase_21 AC 363 ms
77,096 KB
testcase_22 AC 194 ms
65,132 KB
testcase_23 AC 194 ms
65,008 KB
testcase_24 AC 195 ms
65,008 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 362 ms
77,088 KB
testcase_30 AC 353 ms
77,092 KB
testcase_31 AC 191 ms
65,328 KB
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {

	class State implements Comparable<State> {
		long a, b;

		public State(long a_, long b_) {
			a = a_;
			b = b_;
		}

		void inc() {
			long x = a - 1;
			long y = a - b;
			a = a + 1;
			b = a - y;
		}

		@Override
		public int compareTo(State o) {
			return -Long.compare(a * o.b, o.a * b);
		}

	}

	final long MOD = 1_000_000 + 3;
	long[] fac = new long[(int) MOD];
	long[] invfac = new long[(int) MOD];
	long[] inv = new long[(int) MOD];
	{
		fac[0] = invfac[0] = fac[1] = invfac[1] = inv[1] = 1;
		for (int i = 2; i < MOD; ++i) {
			fac[i] = i * fac[i - 1] % MOD;
			inv[i] = MOD - inv[(int) MOD % i] * (MOD / i) % MOD;
			invfac[i] = inv[i] * invfac[i - 1] % MOD;
		}
	}

	long comb(long n, long k) {
		long ret = 1;
		while (n > 0 || k > 0) {
			ret = ret * comb((int) (n % MOD), (int) (k % MOD));
			n /= MOD;
			k /= MOD;
		}
		return ret;
	}

	long comb(int n, int k) {
		return fac[n] * invfac[k] % MOD * invfac[n - k] % MOD;
	}

	long f(ArrayList<Long> list, long s) {
		long res = s;
		long all = 0;
		long ret = 1;
		for (long v : list) {
			all += v;
		}
		if (all == s)
			return 1;
		if (all > s)
			return 0;
		if (list.size() == 0)
			return 1;
		PriorityQueue<State> pq = new PriorityQueue<>();
		for (int i = 0; i < list.size(); ++i) {
			long y = (list.get(i) * s / all) - 1;
			y = Math.max(y, list.get(i));
			ret = ret * comb(y, list.get(i)) % MOD;
			res -= y;
			pq.add(new State(y + 1, y + 1 - list.get(i)));
		}
		while (res > 0) {
			State state = pq.poll();
			ret = ret * state.a % MOD * inv[(int) state.b] % MOD;
			--res;
			state.inc();
			pq.add(state);
		}
		return ret;
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		long[] s = new long[26];
		for (int i = 0; i < 26; ++i) {
			s[i] = sc.nextLong();
		}
		String T = sc.next();
		ArrayList<Long>[] list = new ArrayList[26];
		for (int i = 0; i < list.length; ++i)
			list[i] = new ArrayList();
		for (int i = 0; i < T.length(); ++i) {
			long c = 1;
			while (i + 1 < T.length() && T.charAt(i) == T.charAt(i + 1)) {
				++c;
				++i;
			}
			list[T.charAt(i) - 'a'].add(c);
		}
		long ret = 1;
		for (int i = 0; i < 26; ++i) {
			ret = ret * f(list[i], s[i]) % MOD;
		}
		System.out.println(ret);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}

}
0