結果

問題 No.1202 お菓子の食べ方
ユーザー PCTprobabilityPCTprobability
提出日時 2020-08-28 17:04:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 852 ms / 2,000 ms
コード長 3,548 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 212,652 KB
実行使用メモリ 58,100 KB
最終ジャッジ日時 2024-11-13 23:28:12
合計ジャッジ時間 25,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 849 ms
58,052 KB
testcase_01 AC 848 ms
58,044 KB
testcase_02 AC 845 ms
57,976 KB
testcase_03 AC 847 ms
57,900 KB
testcase_04 AC 847 ms
57,892 KB
testcase_05 AC 847 ms
57,976 KB
testcase_06 AC 847 ms
57,920 KB
testcase_07 AC 845 ms
57,896 KB
testcase_08 AC 851 ms
58,100 KB
testcase_09 AC 847 ms
57,928 KB
testcase_10 AC 80 ms
50,560 KB
testcase_11 AC 163 ms
51,432 KB
testcase_12 AC 475 ms
54,184 KB
testcase_13 AC 93 ms
50,704 KB
testcase_14 AC 454 ms
54,004 KB
testcase_15 AC 67 ms
50,516 KB
testcase_16 AC 312 ms
52,700 KB
testcase_17 AC 195 ms
51,636 KB
testcase_18 AC 163 ms
51,572 KB
testcase_19 AC 82 ms
50,788 KB
testcase_20 AC 352 ms
53,048 KB
testcase_21 AC 360 ms
53,268 KB
testcase_22 AC 102 ms
50,928 KB
testcase_23 AC 280 ms
52,304 KB
testcase_24 AC 281 ms
52,704 KB
testcase_25 AC 87 ms
50,712 KB
testcase_26 AC 387 ms
53,372 KB
testcase_27 AC 322 ms
52,688 KB
testcase_28 AC 141 ms
51,256 KB
testcase_29 AC 191 ms
51,648 KB
testcase_30 AC 56 ms
50,212 KB
testcase_31 AC 58 ms
50,312 KB
testcase_32 AC 59 ms
50,332 KB
testcase_33 AC 53 ms
50,300 KB
testcase_34 AC 58 ms
50,344 KB
testcase_35 AC 56 ms
50,304 KB
testcase_36 AC 57 ms
50,328 KB
testcase_37 AC 54 ms
50,196 KB
testcase_38 AC 59 ms
50,384 KB
testcase_39 AC 62 ms
50,376 KB
testcase_40 AC 852 ms
58,016 KB
testcase_41 AC 848 ms
57,884 KB
testcase_42 AC 843 ms
58,028 KB
testcase_43 AC 852 ms
58,024 KB
testcase_44 AC 850 ms
57,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <random>
#include <bits/stdc++.h>
using namespace std;
using ull = __int128;
using ll = long long;
#define rep(i,a,b) for(int i=a;i<b;i++)
#include <iostream>
using namespace std;

const int MAX = 2000010;
const int mod = 1000000007;
const int MOD = 1000000007;

long long fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}

// 二項係数計算
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

class mint {
    long long x;
public:
    mint(long long x=0) : x((x%mod+mod)%mod) {}
    mint operator-() const { 
      return mint(-x);
    }
    mint& operator+=(const mint& a) {
        if ((x += a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator-=(const mint& a) {
        if ((x += mod-a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator*=(const  mint& a) {
        (x *= a.x) %= mod;
        return *this;
    }
    mint operator+(const mint& a) const {
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint& a) const {
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint& a) const {
        mint res(*this);
        return res*=a;
    }
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }
    // for prime mod
    mint inv() const {
        return pow(mod-2);
    }
    mint& operator/=(const mint& a) {
        return (*this) *= a.inv();
    }
    mint operator/(const mint& a) const {
        mint res(*this);
        return res/=a;
    }

    friend ostream& operator<<(ostream& os, const mint& m){
        os << m.x;
        return os;
    }
  friend istream& operator>>(istream& lhs,mint& rhs) noexcept {
        lhs >> rhs.x;
        return lhs;
    }
};


int main() {
    // 前処理
    COMinit();
int n,m;
  cin>>n>>m;
 vector<vector<ll>> o(n, vector<ll>(m));
 assert(1<=n&&n<=1000&&1<=m&&m<=1000);
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < m; j++) {
      cin >> o.at(i).at(j);
      assert(1<=o.at(i).at(j)&&o.at(i).at(j)<=1000000);
    }
  }
 mint ans=0;
  mint p=0;
  for(int i=1;i<n;i++){
      for(int j=1;j<m;j++){
          assert(o.at(i).at(j)<=o.at(i).at(j-1)&&o.at(i).at(j)<=o.at(i-1).at(j));
      }
  }
  for(int i=1;i<n;i++){
      assert(o.at(i).at(0)<=o.at(i-1).at(0));
  }
  for(int j=1;j<m;j++){
      assert(o.at(0).at(j)<=o.at(0).at(j-1));
  }
  for(int i=0;i<n;i++){
    for(int j=0;j<m;j++){
      p=0;
     p=p+COM(o.at(i).at(j)+i+j-1,o.at(i).at(j)-1);
      if(j!=m-1){
       p=p+(mint(((o.at(i).at(j)*COM(o.at(i).at(j)+i+j,o.at(i).at(j))-(o.at(i).at(j+1)*COM(o.at(i).at(j+1)+i+j,o.at(i).at(j+1))))))/mint((i+j+1)));
      }
      else{
        p=p+mint((COM(o.at(i).at(j)+i+j,o.at(i).at(j))*o.at(i).at(j)))/mint((i+j+1));
      }
      if(i!=n-1){
      p=p+(mint(((o.at(i).at(j)*COM(o.at(i).at(j)+i+j,o.at(i).at(j))-(o.at(i+1).at(j)*COM(o.at(i+1).at(j)+i+j,o.at(i+1).at(j))))))/mint(i+j+1));
      }
      else{
        p=p+mint((COM(o.at(i).at(j)+i+j,o.at(i).at(j))*o.at(i).at(j)))/mint(i+j+1);
      }
      ans=ans+p*COM(i+j,i);
    }
  }
                         cout<<ans<<endl;
}
0