結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー cureskolcureskol
提出日時 2021-07-09 21:35:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 1,524 ms
コンパイル使用メモリ 166,680 KB
実行使用メモリ 81,652 KB
最終ジャッジ日時 2024-07-01 15:24:53
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
81,536 KB
testcase_01 AC 81 ms
81,536 KB
testcase_02 AC 254 ms
81,536 KB
testcase_03 AC 257 ms
81,536 KB
testcase_04 AC 257 ms
81,536 KB
testcase_05 AC 253 ms
81,536 KB
testcase_06 AC 255 ms
81,536 KB
testcase_07 AC 253 ms
81,536 KB
testcase_08 AC 253 ms
81,652 KB
testcase_09 AC 255 ms
81,536 KB
testcase_10 AC 252 ms
81,536 KB
testcase_11 AC 226 ms
81,536 KB
testcase_12 AC 226 ms
81,536 KB
testcase_13 AC 225 ms
81,536 KB
testcase_14 AC 81 ms
81,536 KB
testcase_15 AC 81 ms
81,536 KB
testcase_16 AC 82 ms
81,408 KB
testcase_17 AC 81 ms
81,408 KB
testcase_18 AC 81 ms
81,408 KB
testcase_19 AC 81 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()

using ll=long long;
const ll MOD=1e9+7;

ll pw(ll n,int k){
  assert(k>=0);
  ll res=1;
  while(k){
    if(k&1)(res*=n)%=MOD;
    (n*=n)%=MOD;
    k>>=1;
  }
  return res;
}
ll Factorial[5000000],Finverse[5000000];
inline void Cinit(){
  Factorial[0]=1;
  for(int i=1;i<5e6;i++)Factorial[i]=(Factorial[i-1]*i)%MOD;
  Finverse[4999999]=pw(Factorial[4999999],MOD-2);
  for(int i=4999998;i>=0;i--)Finverse[i]=(i+1)*Finverse[i+1]%MOD;
}
ll nCk(int n,int k){
  if(n<k)return 0;if(k<0)return 0;
  if(!Factorial[0])Cinit();
  ll res=Factorial[n];
  (res*=Finverse[k])%=MOD;
  (res*=Finverse[n-k])%=MOD;
  return res;
}

int main(){
  int n,m;cin>>n>>m;
  ll ans=nCk(2*n,n)*2*n%MOD;
  while(m--){
    int t,x,y;cin>>t>>x>>y;
    if(t==1){
      ans-=nCk(x+y,x)*nCk(n-(x+1)+n-y,n-y)%MOD;
    }
    else{
      ans-=nCk(x+y,x)*nCk(n-(y+1)+n-x,n-x)%MOD;
    }
    ans+=MOD;
    if(ans>=MOD)ans-=MOD;
  }
  cout<<ans<<endl;
}
0