結果
| 問題 |
No.1596 Distance Sum in 2D Plane
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-07-10 02:25:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 945 bytes |
| コンパイル時間 | 1,590 ms |
| コンパイル使用メモリ | 167,420 KB |
| 実行使用メモリ | 13,756 KB |
| 最終ジャッジ日時 | 2024-07-01 21:25:34 |
| 合計ジャッジ時間 | 5,494 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | AC * 2 TLE * 1 -- * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll mod = 1000000007;
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 = 1, div = 1;
while(m>0){
(mul *= n) %= mod;
(div *= m) %= mod;
n--;
m--;
}
return mul * powmod(div,mod-2) %mod;
}
int main(){
int n,m;
cin >> n >> m;
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;
}