結果

問題 No.695 square1001 and Permutation 4
ユーザー 37zigen37zigen
提出日時 2020-05-11 18:00:53
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,964 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 100,176 KB
最終ジャッジ日時 2023-09-30 01:41:24
合計ジャッジ時間 15,836 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,732 KB
testcase_01 AC 263 ms
57,776 KB
testcase_02 AC 289 ms
69,448 KB
testcase_03 AC 277 ms
67,696 KB
testcase_04 AC 510 ms
69,160 KB
testcase_05 AC 569 ms
69,584 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 319 ms
60,296 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;
import java.util.concurrent.ConcurrentHashMap;

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

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] x = new int[m];
		for (int i = 0; i < m; ++i)
			x[i] = sc.nextInt();
		dp = new int[(n + 1) / 2];
		long mo1 = 17 * 9920467;
		long mo2 = 592951213;
		long mo3 = mo1 * mo2;
		long ans1 = solve(mo1, n, m, x);
		long ans2 = solve(mo2, n, m, x);
		long f1 = ans1 % mo1 * inv(mo2, mo1) % mo1 * mo2 % mo3;
		long f2 = inv(mo1, mo2) % mo2 * (ans2 % mo2 - f1 % mo2 + mo2) % mo2 * mo1 % mo3;
		System.out.println((f1 + f2) % mo3);
	}

	long inv(long a, long mo) {
		a %= mo;
		long u=0,v=1,s=mo,t=a;
		while (t!=0) {
			long q=s/t;
			u-=v*q;
			s-=t*q;
			s^=t;t^=s;s^=t;
			u^=v;v^=u;u^=v;
		}
		if (u<0) u+=mo;
		return u;
	}

	int[] dp;

	long solve(long mo, int n, int m, int[] x) {
		Arrays.fill(dp, 0);
		dp[0] = 1;
		for (int i = 0; i < dp.length; ++i) {
			for (int j = 0; j < x.length; ++j) {
				if (i + x[j] >= dp.length)
					continue;
				dp[i + x[j]] = (int) ((dp[i + x[j]] + dp[i]) % mo);
			}
		}
		long ret = 0;
		for (int i = 0; i < dp.length; ++i) {
			for (int j = 0; j < m; ++j) {
				if (x[j] + i < dp.length || (n - 1) - x[j] - i < 0)
					continue;
				ret = (ret + (long) dp[(n - 1) - x[j] - i] * dp[i] % mo) % mo;
			}
		}
		return ret;
	}

	class BIT {
		int n;
		int[] a;

		public BIT(int n_) {
			n = n_;
			a = new int[n + 1];
		}

		void add(int k, int add) {
			++k;
			while (k < a.length) {
				a[k] += add;
				k += k & -k;
			}
		}

		int sum(int k) {
			++k;
			int ret = 0;
			while (k > 0) {
				ret += a[k];
				k -= k & -k;
			}
			return ret;
		}

		int sum(int a, int b) {
			return sum(b - 1) - sum(a - 1);
		}
	}

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