結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー saksak
提出日時 2021-07-09 21:50:53
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 2,948 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 204,240 KB
実行使用メモリ 168,844 KB
最終ジャッジ日時 2023-09-14 08:34:28
合計ジャッジ時間 11,659 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
159,324 KB
testcase_01 AC 237 ms
159,392 KB
testcase_02 AC 517 ms
168,620 KB
testcase_03 AC 511 ms
168,828 KB
testcase_04 AC 512 ms
168,620 KB
testcase_05 AC 509 ms
168,700 KB
testcase_06 AC 509 ms
168,564 KB
testcase_07 AC 507 ms
168,552 KB
testcase_08 AC 514 ms
168,844 KB
testcase_09 AC 516 ms
168,640 KB
testcase_10 AC 516 ms
168,580 KB
testcase_11 AC 469 ms
168,624 KB
testcase_12 AC 472 ms
168,648 KB
testcase_13 AC 470 ms
168,688 KB
testcase_14 AC 237 ms
159,380 KB
testcase_15 AC 236 ms
159,324 KB
testcase_16 AC 237 ms
159,396 KB
testcase_17 AC 236 ms
159,404 KB
testcase_18 AC 238 ms
159,256 KB
testcase_19 AC 238 ms
159,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> p_ll;

template<class T>
void debug(T itr1, T itr2) { auto now = itr1; while(now<itr2) { cout << *now << " "; now++; } cout << endl; }
#define repr(i,from,to) for (ll i=(ll)from; i<(ll)to; i++)
#define all(vec) vec.begin(), vec.end()
#define rep(i,N) repr(i,0,N)
#define per(i,N) for (ll i=(ll)N-1; i>=0; i--)
#define popcount __builtin_popcount

const ll LLINF = pow(2,61)-1;
const ll INF = pow(2,30)-1;

ll gcd(ll a, ll b) { if (a<b) swap(a,b); return b==0 ? a : gcd(b, a%b); }
ll lcm(ll a, ll b) { return a/gcd(a,b)*b; }

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

const ll MOD = pow(10,9)+7;
struct MLL {
  ll x, mod;
  MLL(ll y=0, ll m=MOD) { x = y; mod = m; }

  MLL &operator+= (const MLL &p) { x = (x+p.x)%mod;       return *this; }
  MLL &operator-= (const MLL &p) { x = (x-p.x+mod)%mod;   return *this; }
  MLL &operator*= (const MLL &p) { x = (x*p.x)%mod;       return *this; }
  MLL &operator/= (const MLL &p) { x = (x*p.inv().x)%mod; return *this; }
  MLL  operator+  (const MLL &p) const { return MLL(*this)+=p; }
  MLL  operator-  (const MLL &p) const { return MLL(*this)-=p; }
  MLL  operator*  (const MLL &p) const { return MLL(*this)*=p; }
  MLL  operator/  (const MLL &p) const { return MLL(*this)/=p; }
  bool operator== (const MLL &p) const { return x==p.x; }
  bool operator!= (const MLL &p) const { return x!=p.x; }
  bool operator<  (const MLL &p) const { return x< p.x; }
  bool operator<= (const MLL &p) const { return x<=p.x; }
  bool operator>  (const MLL &p) const { return x> p.x; }
  bool operator>= (const MLL &p) const { return x>=p.x; }
  MLL pow(MLL n) const { MLL result(1), p(x); ll tn = n.x; while(tn){ if (tn&1) result*=p; p*=p; tn>>=1; } return result; }
  MLL inv() const { return pow(MOD-2); }
};

MLL operator+ (ll x, MLL p) { return (MLL)x+p; }
MLL operator- (ll x, MLL p) { return (MLL)x-p; }
MLL operator* (ll x, MLL p) { return (MLL)x*p; }
MLL operator/ (ll x, MLL p) { return (MLL)x/p; }

vector<MLL> fac;
void c_fac(ll x=pow(10,7)+10) { fac.resize(x); rep(i,x) fac[i] = i ? fac[i-1]*i : 1; }
MLL nck(MLL n, MLL k) { return fac[n.x]/(fac[k.x]*fac[(n-k).x]); };

ostream &operator<< (ostream &ost, const MLL &p) { return ost << p.x; }
istream &operator>> (istream &ist, MLL &p) { return ist >> p.x; }

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

int main() {
  MLL N, M; cin >> N >> M;
  MLL t[M.x], x[M.x], y[M.x]; rep(i,M.x) cin >> t[i] >> x[i] >> y[i];

  c_fac();
  MLL result = N * 2 * nck(N*2,N);
  rep(i,M.x) {
    MLL tx = t[i]==1 ? N-(x[i]+1) : N-x[i];
    MLL ty = t[i]==1 ? N-y[i] : N-(y[i]+1);
    result -= nck(x[i]+y[i],x[i]) * nck(tx+ty,tx);
  }
  cout << result << endl;
  return 0;
}
0