結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー 37zigen37zigen
提出日時 2016-07-14 00:37:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 4,503 bytes
コンパイル時間 2,555 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 77,496 KB
最終ジャッジ日時 2024-04-23 19:12:22
合計ジャッジ時間 8,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,840 KB
testcase_01 AC 131 ms
41,564 KB
testcase_02 AC 132 ms
41,596 KB
testcase_03 AC 118 ms
40,588 KB
testcase_04 AC 308 ms
77,496 KB
testcase_05 AC 129 ms
41,144 KB
testcase_06 AC 308 ms
77,288 KB
testcase_07 AC 300 ms
77,188 KB
testcase_08 AC 308 ms
77,128 KB
testcase_09 AC 293 ms
77,180 KB
testcase_10 AC 130 ms
41,452 KB
testcase_11 AC 187 ms
51,972 KB
testcase_12 AC 128 ms
41,544 KB
testcase_13 AC 161 ms
46,296 KB
testcase_14 AC 130 ms
41,436 KB
testcase_15 AC 154 ms
41,688 KB
testcase_16 AC 132 ms
41,204 KB
testcase_17 AC 130 ms
40,948 KB
testcase_18 AC 308 ms
77,324 KB
testcase_19 AC 308 ms
76,944 KB
testcase_20 AC 310 ms
77,420 KB
testcase_21 AC 307 ms
77,228 KB
testcase_22 AC 302 ms
77,216 KB
testcase_23 AC 306 ms
77,380 KB
testcase_24 AC 298 ms
76,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";
	public static void main(String[] args) throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);

		solver();
		out.flush();
	}

	static long nl()
	{
		try {
			long num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc()
	{
		try {
			int b = skip();
			if(b == -1)return 0;
			return (char)b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd()
	{
		try {
			return Double.parseDouble(ns());
		}catch(Exception e) {
		}
		return 0;
	}

	static String ns()
	{
		try{
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if(b == -1)return "";
			sb.append((char)b);
			while(true){
				b = is.read();
				if(b == -1)return sb.toString();
				if(b <= ' ')return sb.toString();
				sb.append((char)b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n)
	{
		char[] buf = new char[n];
		try{
			int b = skip(), p = 0;
			if(b == -1)return null;
			buf[p++] = (char)b;
			while(p < n){
				b = is.read();
				if(b == -1 || b <= ' ')break;
				buf[p++] = (char)b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n)
	{
		byte[] buf = new byte[n];
		try{
			int b = skip();
			if(b == -1)return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException
	{
		int b;
		while((b = is.read()) != -1 && !(b >= 33 && b <= 126));
		return b;
	}

	static boolean eof()
	{
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni()
	{
		try {
			int num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}


	static long MOD = 1_000_000_000 + 7;

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int gx = sc.nextInt();
		int gy = sc.nextInt();
		int k = sc.nextInt();// the number of kinds of crystals

		P np = new P(-1, -1);
		P[] ps = new P[1 << (4 * k)];
		for (int i = 1; i < ps.length; i++) {
			ps[i] = np;
		}
		ps[0] = new P(0, 0);

		for (int i = 0; i < k; i++) {
			int x = sc.nextInt();
			int y = sc.nextInt();
			P v = new P(x, y);
			int n = sc.nextInt();

			for (int j = 0; n > 0; j++) {
				int mul = Math.min(1 << j, n);
				n -= mul;
				P u = v.multiply(mul);
				for (int l = (1 << (4 * i + j)) - 1 ; l >= 0; l--) {
					if (ps[l] == np)
						continue;
					ps[l + (mul << (4 * i))] = ps[l].add(u);
				}
			}
		}
		long ans = 0;
		for (int i = 0; i < (1 << (4 * k)); i++) {
			if (ps[i] == np)
				continue;
			if (ps[i].x != gx || ps[i].y != gy)
				continue;
			int s = i;
			long total = 0;
			long denomi = 1;
			for (; s > 0; s >>= 4) {
				int d = s & 15;
				total += d;
				denomi = denomi * inv(fact(d), MOD) % MOD;
			}
			ans = (ans + fact(total) * denomi) % MOD;
		}
		System.out.println(ans);
	}

	static class P {
		int x;
		int y;

		P(int x, int y) {
			this.x = x;
			this.y = y;
		}

		P multiply(int m) {
			return new P(x * m, y * m);
		}

		P add(P p) {
			return new P(x + p.x, y + p.y);
		}
	}

	static long fact(long nume) {
		long ans = 1;
		for (int i = 1; i <= nume; i++) {
			ans *= i;
			ans %= MOD;
		}
		return ans;
	}

	static long inv(long a, long mod) {
		a = a % mod;
		long b = mod;
		long p = 1, q = 0;

		while (b > 1) {
			long c = b / a;
			b = b % a;
			q = q - p * c;
			long d = b;
			b = a;
			a = d;
			d = p;
			p = q;
			q = d;
		}
		while (q < 0)
			q += mod;
		return q;
	}
}
0