結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー nishi5451nishi5451
提出日時 2021-08-02 18:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 4,236 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 65,820 KB
最終ジャッジ日時 2023-10-14 20:51:17
合計ジャッジ時間 8,143 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
60,584 KB
testcase_01 AC 95 ms
60,852 KB
testcase_02 AC 238 ms
65,488 KB
testcase_03 AC 233 ms
63,680 KB
testcase_04 AC 235 ms
65,820 KB
testcase_05 AC 218 ms
64,684 KB
testcase_06 AC 216 ms
64,624 KB
testcase_07 AC 216 ms
64,716 KB
testcase_08 AC 219 ms
64,300 KB
testcase_09 AC 219 ms
64,528 KB
testcase_10 AC 216 ms
64,724 KB
testcase_11 AC 206 ms
65,128 KB
testcase_12 AC 205 ms
65,168 KB
testcase_13 AC 206 ms
65,136 KB
testcase_14 AC 96 ms
60,800 KB
testcase_15 AC 93 ms
61,164 KB
testcase_16 AC 96 ms
60,704 KB
testcase_17 AC 93 ms
60,488 KB
testcase_18 AC 93 ms
60,592 KB
testcase_19 AC 92 ms
60,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Mod {
	private static int MOD = 1000000007;
	private static long[] fac, finv, inv;
	private static int combSize;

	static void setMod(int mod){
		MOD = mod;
	}
	static int mod(){
		return MOD;
	}
	static long pow(long p, long n){
		long ret = 1;
		while(n > 0){
			if((n & 1) == 1) ret = ret * p % MOD;
			p = p * p % MOD;
			n >>= 1;
		}
		return ret;
	}
	static long factorial(int n){
		long ret = 1;
		for(int i = 2; i <= n; i++) ret = ret * i % MOD;
		return ret;
	}
	static long inverse(long a){
		long b = MOD, u = 1, v = 0;
		while(b > 0){
			long t = a / b;
			a -= t * b;
			long tmp1 = a; a = b; b = tmp1;
			u -= t * v;
			long tmp2 = u; u = v; v = tmp2;
		}
		u %= MOD;
		if(u < 0) u += MOD;
		return u;
	}
	static void initTable(int n){
		combSize = n+1;
		fac = new long[combSize];
		finv = new long[combSize];
		inv = new long[combSize];
		fac[0] = fac[1] = 1;
		finv[0] = finv[1] = 1;
		inv[1] = 1;
		for(int i = 2; i < combSize; i++){
			fac[i] = fac[i-1] * i % MOD;
			inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
			finv[i] = finv[i-1] * inv[i] % MOD;
		}
	}
	static long comb(int n, int k){
		if(n < k) return 0;
		if(n < 0 || k < 0) return 0;
		return fac[n] * (finv[k] * finv[n-k] % MOD) % MOD;
	}
	static long perm(int n, int k){
		if(n < k) return 0;
		if(n < 0 || k < 0) return 0;
		return fac[n] * finv[n-k] % MOD;
	}
	static long homo(int n, int r){
		if(n < 0 || r < 0) return 0;
		return comb(n+r-1, r);
	}
}
public class Main {
	static final int INF = 1<<30;
	static final long INFL = 1L<<60;
	static final int MOD = 1000000007;
	static final int MOD2 = 998244353;
	static List<List<Integer>> g;
	
	public static void main(String[] args) {
		FastScanner fs = new FastScanner();
		PrintWriter pw = new PrintWriter(System.out);
		int n = fs.nextInt();
		int m = fs.nextInt();
		Mod.initTable(500000);
		long ans = Mod.comb(n+n,n)*(n+n);
		ans %= MOD;
		for(int i = 0; i < m; i++){
			int t = fs.nextInt();
			int x = fs.nextInt();
			int y = fs.nextInt();
			long now = 0;
			if(t == 1){
				now = Mod.comb(x+y,x)*Mod.comb(n-y+n-x-1,n-y)%MOD;
			} else {
				now = Mod.comb(x+y,x)*Mod.comb(n-y+n-x-1,n-x)%MOD;
			}
			ans = (ans - now + MOD) % MOD;
		}
		pw.println(ans);
		pw.close();
	}
}

class FastScanner {
	private InputStream in = System.in;
	private byte[] buffer = new byte[1024];
	private int length = 0, p = 0;
	private boolean hasNextByte() {
		if (p < length) return true;
		else{
			p = 0;
			try{
				length = in.read(buffer);
			}catch(Exception e){
				e.printStackTrace();
			}
			if(length == 0) return false;
		}
		return true;
	}
	private int readByte() {
		if (hasNextByte() == true) return buffer[p++];
		return -1;
	}
	private static boolean isPrintable(int n) {
		return 33 <= n && n <= 126;
	}
	private void skip() {
		while (hasNextByte() && !isPrintable(buffer[p])) p++;
	}
	public boolean hasNext() {
		skip();
		return hasNextByte();
	}
	public String next() {
		if(!hasNext()) throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int temp = readByte();
		while (isPrintable(temp)) {
			sb.appendCodePoint(temp);
			temp = readByte();
		}
		return sb.toString();
	}
	public int nextInt() {
		return Math.toIntExact(nextLong());
	}
	public int[] nextInts(int n) {
		int[] ar = new int[n];
		for (int i = 0; i < n; i++) ar[i] = nextInt();
		return ar;
	}
	public long[] nextLongs(int n) {
		long[] ar = new long[n];
		for (int i = 0; i < n; i++) ar[i] = nextLong();
		return ar;
	}
	public long nextLong() {
		if(!hasNext()) throw new NoSuchElementException();
		boolean minus = false;
		int temp = readByte();
		if (temp == '-') {
			minus = true;
			temp = readByte();
		}
		if (temp < '0' || '9' < temp) throw new NumberFormatException();
		long n = 0;
		while (isPrintable(temp)) {
			if ('0' <= temp && temp <= '9') {
				n *= 10;
				n += temp - '0';
			}
			temp = readByte();
		}
		return minus ? -n : n;
	}
	public char[] nextChars() {
		String s = next();
		return s.toCharArray();
	}
	public char[][] nextCharMat(int h, int w) {
		char[][] ar = new char[h][w];
		for(int i = 0; i < h; i++){
			String s = next();
			for(int j = 0; j < w; j++){
				ar[i][j] = s.charAt(j);
			}
		}
		return ar;
	}
}
0