結果
問題 | No.1596 Distance Sum in 2D Plane |
ユーザー | chocorusk |
提出日時 | 2021-07-09 21:38:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 1,311 bytes |
コンパイル時間 | 3,424 ms |
コンパイル使用メモリ | 189,940 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-07-01 15:30:47 |
合計ジャッジ時間 | 6,665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
19,072 KB |
testcase_01 | AC | 11 ms
19,024 KB |
testcase_02 | AC | 176 ms
19,072 KB |
testcase_03 | AC | 179 ms
19,072 KB |
testcase_04 | AC | 174 ms
19,148 KB |
testcase_05 | AC | 173 ms
19,148 KB |
testcase_06 | AC | 170 ms
19,072 KB |
testcase_07 | AC | 173 ms
19,200 KB |
testcase_08 | AC | 171 ms
19,200 KB |
testcase_09 | AC | 173 ms
19,072 KB |
testcase_10 | AC | 177 ms
19,148 KB |
testcase_11 | AC | 156 ms
19,072 KB |
testcase_12 | AC | 158 ms
19,072 KB |
testcase_13 | AC | 156 ms
19,148 KB |
testcase_14 | AC | 8 ms
19,072 KB |
testcase_15 | AC | 7 ms
19,024 KB |
testcase_16 | AC | 7 ms
19,020 KB |
testcase_17 | AC | 8 ms
19,020 KB |
testcase_18 | AC | 7 ms
19,072 KB |
testcase_19 | AC | 7 ms
19,016 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; using mint=modint1000000007; mint f[2000010], invf[2000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } int main() { int n, m; cin>>n>>m; fac(2*n); mint ans=mint(2*n)*comb(2*n, n); for(int i=0; i<m; i++){ int t, x, y; cin>>t>>x>>y; if(t==1){ mint c=comb(x+y, x)*comb(n-x-1+n-y, n-y); ans-=c; }else{ mint c=comb(x+y, x)*comb(n-x-1+n-y, n-x); ans-=c; } } cout<<ans.val()<<endl; return 0; }