結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー kotatsugamekotatsugame
提出日時 2021-07-09 21:39:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 15:34:55
合計ジャッジ時間 3,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 8 ms
6,940 KB
testcase_02 AC 180 ms
6,944 KB
testcase_03 AC 175 ms
6,944 KB
testcase_04 AC 170 ms
6,940 KB
testcase_05 AC 170 ms
6,944 KB
testcase_06 AC 170 ms
6,940 KB
testcase_07 AC 174 ms
6,940 KB
testcase_08 AC 172 ms
6,940 KB
testcase_09 AC 172 ms
6,940 KB
testcase_10 AC 172 ms
6,940 KB
testcase_11 AC 154 ms
6,940 KB
testcase_12 AC 154 ms
6,944 KB
testcase_13 AC 154 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
a.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]

ソースコード

diff #

#line 1 "a.cpp"
#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint1000000007;
#line 1 "/home/kotatsugame/library/math/combination.cpp"
#include<vector>
template<typename T>
struct combination{
	vector<T>fac,invfac;
	combination(size_t N=0):fac(1,1),invfac(1,1)
	{
		make_table(N);
	}
	void make_table(size_t N)
	{
		if(fac.size()>N)return;
		size_t now=fac.size();
		N=max(N,now*2);
		fac.resize(N+1);
		invfac.resize(N+1);
		for(size_t i=now;i<=N;i++)fac[i]=fac[i-1]*i;
		invfac[N]=1/fac[N];
		for(size_t i=N;i-->now;)invfac[i]=invfac[i+1]*(i+1);
	}
	T factorial(size_t n)
	{
		make_table(n);
		return fac[n];
	}
	T P(size_t n,size_t k)
	{
		if(n<k)return 0;
		make_table(n);
		return fac[n]*invfac[n-k];
	}
	T C(size_t n,size_t k)
	{
		if(n<k)return 0;
		make_table(n);
		return fac[n]*invfac[n-k]*invfac[k];
	}
	T H(size_t n,size_t k)
	{
		if(n==0)return k==0?1:0;
		return C(n-1+k,k);
	}
};
#line 6 "a.cpp"
combination<mint>C;
int N,M;
main()
{
	cin>>N>>M;
	mint ans=C.C(N+N,N)*2*N;
	for(int i=0;i<M;i++)
	{
		int t,x,y;cin>>t>>x>>y;
		if(t==1)
		{
			ans-=C.C(x+y,x)*C.C(N-x-1+N-y,N-y);
		}
		else
		{
			ans-=C.C(x+y,x)*C.C(N-x+N-y-1,N-x);
		}
	}
	cout<<ans.val()<<endl;
}
0