結果
| 問題 |
No.1596 Distance Sum in 2D Plane
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-07-10 02:32:24 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 270 ms / 2,000 ms |
| コード長 | 1,039 bytes |
| コンパイル時間 | 1,583 ms |
| コンパイル使用メモリ | 170,576 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2024-07-01 21:34:00 |
| 合計ジャッジ時間 | 5,868 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll mod = 1000000007;
vector<ll> factorial;
ll powmod(ll n,int m){
if(n==0) return 0;
if(m==0 || n==1) return 1;
if(m%2) return powmod(n*n %mod, m/2) *n %mod;
else return powmod(n*n %mod, m/2);
}
ll comb(int n,int m){
if(m>n || m<0) return 0;
m = min(n-m,m);
if(m==0) return 1;
ll mul = factorial[n], div = factorial[m] * factorial[n-m] %mod;
return mul * powmod(div,mod-2) %mod;
}
int main(){
int n,m;
cin >> n >> m;
factorial.resize(2*n+1,1);
for(int i=1; i<=2*n; ++i) {
factorial[i]= factorial[i-1] * i % mod;
}
ll ans = comb(2*n,n) * 2*n %mod;
ll minus = 0;
for(int i=0; i<m; ++i) {
int t,x,y;
cin >> t >> x >> y;
//cout << x << ' ' << y << endl;
//cout << comb(x+y,x) << ' ' << comb(2*n-x-y-1, t==1 ? n-y : n-x) << endl;
minus += (ll)comb(x+y,x) * comb(2*n-x-y-1, t==1 ? n-y : n-x) %mod;
minus %= mod;
}
cout << (ans + mod - minus) % mod << endl;
}