結果

問題 No.856 増える演算
ユーザー uwiuwi
提出日時 2019-07-26 23:13:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 562 ms / 3,153 ms
コード長 10,577 bytes
コンパイル時間 4,144 ms
コンパイル使用メモリ 89,532 KB
実行使用メモリ 66,632 KB
最終ジャッジ日時 2024-07-02 09:25:31
合計ジャッジ時間 38,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
65,228 KB
testcase_01 AC 290 ms
64,364 KB
testcase_02 AC 293 ms
64,996 KB
testcase_03 AC 311 ms
64,732 KB
testcase_04 AC 298 ms
65,112 KB
testcase_05 AC 365 ms
64,772 KB
testcase_06 AC 349 ms
64,836 KB
testcase_07 AC 292 ms
65,064 KB
testcase_08 AC 299 ms
64,832 KB
testcase_09 AC 283 ms
64,592 KB
testcase_10 AC 279 ms
64,436 KB
testcase_11 AC 283 ms
64,908 KB
testcase_12 AC 254 ms
64,548 KB
testcase_13 AC 297 ms
65,024 KB
testcase_14 AC 347 ms
64,728 KB
testcase_15 AC 335 ms
64,568 KB
testcase_16 AC 307 ms
64,984 KB
testcase_17 AC 326 ms
64,620 KB
testcase_18 AC 281 ms
64,436 KB
testcase_19 AC 302 ms
64,316 KB
testcase_20 AC 351 ms
64,904 KB
testcase_21 AC 294 ms
65,252 KB
testcase_22 AC 305 ms
64,900 KB
testcase_23 AC 318 ms
64,440 KB
testcase_24 AC 313 ms
64,976 KB
testcase_25 AC 287 ms
65,032 KB
testcase_26 AC 273 ms
64,976 KB
testcase_27 AC 268 ms
64,828 KB
testcase_28 AC 263 ms
64,796 KB
testcase_29 AC 290 ms
64,924 KB
testcase_30 AC 290 ms
64,916 KB
testcase_31 AC 295 ms
65,000 KB
testcase_32 AC 283 ms
64,852 KB
testcase_33 AC 364 ms
64,984 KB
testcase_34 AC 437 ms
64,808 KB
testcase_35 AC 338 ms
64,652 KB
testcase_36 AC 351 ms
66,632 KB
testcase_37 AC 382 ms
65,092 KB
testcase_38 AC 311 ms
64,996 KB
testcase_39 AC 296 ms
64,944 KB
testcase_40 AC 282 ms
65,028 KB
testcase_41 AC 326 ms
65,036 KB
testcase_42 AC 345 ms
64,928 KB
testcase_43 AC 326 ms
64,668 KB
testcase_44 AC 297 ms
65,024 KB
testcase_45 AC 323 ms
65,116 KB
testcase_46 AC 335 ms
64,820 KB
testcase_47 AC 270 ms
65,108 KB
testcase_48 AC 343 ms
64,752 KB
testcase_49 AC 334 ms
64,912 KB
testcase_50 AC 332 ms
65,088 KB
testcase_51 AC 406 ms
64,976 KB
testcase_52 AC 369 ms
64,768 KB
testcase_53 AC 506 ms
65,156 KB
testcase_54 AC 430 ms
64,976 KB
testcase_55 AC 503 ms
64,864 KB
testcase_56 AC 434 ms
65,304 KB
testcase_57 AC 495 ms
64,824 KB
testcase_58 AC 484 ms
64,608 KB
testcase_59 AC 537 ms
65,536 KB
testcase_60 AC 455 ms
65,204 KB
testcase_61 AC 546 ms
65,404 KB
testcase_62 AC 524 ms
65,152 KB
testcase_63 AC 369 ms
65,068 KB
testcase_64 AC 507 ms
64,788 KB
testcase_65 AC 399 ms
65,520 KB
testcase_66 AC 443 ms
64,940 KB
testcase_67 AC 479 ms
65,120 KB
testcase_68 AC 528 ms
64,920 KB
testcase_69 AC 562 ms
65,036 KB
testcase_70 AC 536 ms
65,180 KB
testcase_71 AC 535 ms
64,992 KB
testcase_72 AC 523 ms
65,156 KB
testcase_73 AC 524 ms
64,904 KB
testcase_74 AC 541 ms
64,908 KB
testcase_75 AC 516 ms
64,928 KB
testcase_76 AC 510 ms
64,772 KB
testcase_77 AC 529 ms
64,928 KB
testcase_78 AC 518 ms
64,980 KB
testcase_79 AC 527 ms
64,872 KB
testcase_80 AC 526 ms
64,900 KB
testcase_81 AC 513 ms
64,772 KB
testcase_82 AC 428 ms
64,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest190726;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;

public class F {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		int n = ni();
		int[] a = na(n);
		
		int min = Integer.MAX_VALUE;
		double best = Double.POSITIVE_INFINITY;
		int bi = a[0], bj = a[1];
		for(int i = n-1;i >= 0;i--) {
			double x = Math.log(a[i]+min) + min * Math.log(a[i]);
			if(x < best) {
				best = x;
				bi = a[i];
				bj = min;
			}
			if(a[i] < min) {
				min = a[i];
			}
		}
		
		int mod = 1000000007;
		long den = (bi+bj) * pow(bi, bj, mod) % mod;
		long E = invl(den, mod);
		
		long[] cum = new long[n+1];
		for(int i = 0;i < n;i++) {
			cum[i+1] = cum[i] + a[i];
		}
		for(int i = 0;i < n;i++) {
			E = E * pow(a[i], cum[n] - cum[i+1], mod) % mod;
		}
		
		long[] f = new long[100005];
		for(int v : a)f[v]++;
		
		long[] f2 = convolute(f, f);
		for(int i = 0;i < f.length;i++)f2[2*i] -= f[i];
		for(int i = 0;i < f2.length;i++) {
			if(f2[i] > 0) {
				E = E * pow(i, f2[i]/2, mod) % mod;
			}
		}
		out.println(E);
	}
	
	public static final int[] NTTPrimes = {1053818881, 1051721729, 1045430273, 1012924417, 1007681537, 1004535809, 998244353, 985661441, 976224257, 975175681};
	public static final int[] NTTPrimitiveRoots = {7, 6, 3, 5, 3, 3, 3, 3, 3, 17};
//	public static final int[] NTTPrimes = {1012924417, 1004535809, 998244353, 985661441, 975175681, 962592769, 950009857, 943718401, 935329793, 924844033};
//	public static final int[] NTTPrimitiveRoots = {5, 3, 3, 3, 17, 7, 7, 7, 3, 5};
	
	public static long[] convoluteSimply(long[] a, long[] b, int P, int g)
	{
		int m = Math.max(2, Integer.highestOneBit(Math.max(a.length, b.length)-1)<<2);
		long[] fa = nttmb(a, m, false, P, g);
		long[] fb = a == b ? fa : nttmb(b, m, false, P, g);
		for(int i = 0;i < m;i++){
			fa[i] = fa[i]*fb[i]%P;
		}
		return nttmb(fa, m, true, P, g);
	}
	
	public static long[] convolute(long[] a, long[] b)
	{
		int USE = 2;
		int m = Math.max(2, Integer.highestOneBit(Math.max(a.length, b.length)-1)<<2);
		long[][] fs = new long[USE][];
		for(int k = 0;k < USE;k++){
			int P = NTTPrimes[k], g = NTTPrimitiveRoots[k];
			long[] fa = nttmb(a, m, false, P, g);
			long[] fb = a == b ? fa : nttmb(b, m, false, P, g);
			for(int i = 0;i < m;i++){
				fa[i] = fa[i]*fb[i]%P;
			}
			fs[k] = nttmb(fa, m, true, P, g);
		}
		
		int[] mods = Arrays.copyOf(NTTPrimes, USE);
		long[] gammas = garnerPrepare(mods);
		int[] buf = new int[USE];
		for(int i = 0;i < fs[0].length;i++){
			for(int j = 0;j < USE;j++)buf[j] = (int)fs[j][i];
			long[] res = garnerBatch(buf, mods, gammas);
			long ret = 0;
			for(int j = res.length-1;j >= 0;j--)ret = ret * mods[j] + res[j];
			fs[0][i] = ret;
		}
		return fs[0];
	}
	
	public static long[] convolute(long[] a, long[] b, int USE, int mod)
	{
		int m = Math.max(2, Integer.highestOneBit(Math.max(a.length, b.length)-1)<<2);
		long[][] fs = new long[USE][];
		for(int k = 0;k < USE;k++){
			int P = NTTPrimes[k], g = NTTPrimitiveRoots[k];
			long[] fa = nttmb(a, m, false, P, g);
			long[] fb = a == b ? fa : nttmb(b, m, false, P, g);
			for(int i = 0;i < m;i++){
				fa[i] = fa[i]*fb[i]%P;
			}
			fs[k] = nttmb(fa, m, true, P, g);
		}
		
		int[] mods = Arrays.copyOf(NTTPrimes, USE);
		long[] gammas = garnerPrepare(mods);
		int[] buf = new int[USE];
		for(int i = 0;i < fs[0].length;i++){
			for(int j = 0;j < USE;j++)buf[j] = (int)fs[j][i];
			long[] res = garnerBatch(buf, mods, gammas);
			long ret = 0;
			for(int j = res.length-1;j >= 0;j--)ret = (ret * mods[j] + res[j]) % mod;
			fs[0][i] = ret;
		}
		return fs[0];
	}
	
	// static int[] wws = new int[270000]; // outer faster
	
	// Modifed Montgomery + Barrett
	private static long[] nttmb(long[] src, int n, boolean inverse, int P, int g)
	{
		long[] dst = Arrays.copyOf(src, n);
		
		int h = Integer.numberOfTrailingZeros(n);
		long K = Integer.highestOneBit(P)<<1;
		int H = Long.numberOfTrailingZeros(K)*2;
		long M = K*K/P;
		
		int[] wws = new int[1<<h-1];
		long dw = inverse ? pow(g, P-1-(P-1)/n, P) : pow(g, (P-1)/n, P);
		long w = (1L<<32)%P;
		for(int k = 0;k < 1<<h-1;k++){
			wws[k] = (int)w;
			w = modh(w*dw, M, H, P);
		}
		long J = invl(P, 1L<<32);
		for(int i = 0;i < h;i++){
			for(int j = 0;j < 1<<i;j++){
				for(int k = 0, s = j<<h-i, t = s|1<<h-i-1;k < 1<<h-i-1;k++,s++,t++){
					long u = (dst[s] - dst[t] + 2*P)*wws[k];
					dst[s] += dst[t];
					if(dst[s] >= 2*P)dst[s] -= 2*P;
//					long Q = (u&(1L<<32)-1)*J&(1L<<32)-1;
					long Q = (u<<32)*J>>>32;
					dst[t] = (u>>>32)-(Q*P>>>32)+P;
				}
			}
			if(i < h-1){
				for(int k = 0;k < 1<<h-i-2;k++)wws[k] = wws[k*2];
			}
		}
		for(int i = 0;i < n;i++){
			if(dst[i] >= P)dst[i] -= P;
		}
		for(int i = 0;i < n;i++){
			int rev = Integer.reverse(i)>>>-h;
			if(i < rev){
				long d = dst[i]; dst[i] = dst[rev]; dst[rev] = d;
			}
		}
		
		if(inverse){
			long in = invl(n, P);
			for(int i = 0;i < n;i++)dst[i] = modh(dst[i]*in, M, H, P);
		}
		
		return dst;
	}
	
	// Modified Shoup + Barrett
	private static long[] nttsb(long[] src, int n, boolean inverse, int P, int g)
	{
		long[] dst = Arrays.copyOf(src, n);
		
		int h = Integer.numberOfTrailingZeros(n);
		long K = Integer.highestOneBit(P)<<1;
		int H = Long.numberOfTrailingZeros(K)*2;
		long M = K*K/P;
		
		long dw = inverse ? pow(g, P-1-(P-1)/n, P) : pow(g, (P-1)/n, P);
		long[] wws = new long[1<<h-1];
		long[] ws = new long[1<<h-1];
		long w = 1;
		for(int k = 0;k < 1<<h-1;k++){
			wws[k] = (w<<32)/P;
			ws[k] = w;
			w = modh(w*dw, M, H, P);
		}
		for(int i = 0;i < h;i++){
			for(int j = 0;j < 1<<i;j++){
				for(int k = 0, s = j<<h-i, t = s|1<<h-i-1;k < 1<<h-i-1;k++,s++,t++){
					long ndsts = dst[s] + dst[t];
					if(ndsts >= 2*P)ndsts -= 2*P;
					long T = dst[s] - dst[t] + 2*P;
					long Q = wws[k]*T>>>32;
					dst[s] = ndsts;
					dst[t] = ws[k]*T-Q*P&(1L<<32)-1;
				}
			}
//			dw = dw * dw % P;
			if(i < h-1){
				for(int k = 0;k < 1<<h-i-2;k++){
					wws[k] = wws[k*2];
					ws[k] = ws[k*2];
				}
			}
		}
		for(int i = 0;i < n;i++){
			if(dst[i] >= P)dst[i] -= P;
		}
		for(int i = 0;i < n;i++){
			int rev = Integer.reverse(i)>>>-h;
			if(i < rev){
				long d = dst[i]; dst[i] = dst[rev]; dst[rev] = d;
			}
		}
		
		if(inverse){
			long in = invl(n, P);
			for(int i = 0;i < n;i++){
				dst[i] = modh(dst[i] * in, M, H, P);
			}
		}
		
		return dst;
	}
	
	static final long mask = (1L<<31)-1;
	
	public static long modh(long a, long M, int h, int mod)
	{
		long r = a-((M*(a&mask)>>>31)+M*(a>>>31)>>>h-31)*mod;
		return r < mod ? r : r-mod;
	}
	
	private static long[] garnerPrepare(int[] m)
	{
		int n = m.length;
		assert n == m.length;
		if(n == 0)return new long[0];
		long[] gamma = new long[n];
		for(int k = 1;k < n;k++){
			long prod = 1;
			for(int i = 0;i < k;i++){
				prod = prod * m[i] % m[k];
			}
			gamma[k] = invl(prod, m[k]);
		}
		return gamma;
	}
	
	private static long[] garnerBatch(int[] u, int[] m, long[] gamma)
	{
		int n = u.length;
		assert n == m.length;
		long[] v = new long[n];
		v[0] = u[0];
		for(int k = 1;k < n;k++){
			long temp = v[k-1];
			for(int j = k-2;j >= 0;j--){
				temp = (temp * m[j] + v[j]) % m[k];
			}
			v[k] = (u[k] - temp) * gamma[k] % m[k];
			if(v[k] < 0)v[k] += m[k];
		}
		return v;
	}


	
	
	
	
	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 F().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