結果

問題 No.1202 お菓子の食べ方
ユーザー Shun_PIShun_PI
提出日時 2020-08-28 23:40:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 1,940 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 173,700 KB
実行使用メモリ 58,036 KB
最終ジャッジ日時 2024-11-14 02:13:24
合計ジャッジ時間 16,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
57,996 KB
testcase_01 AC 507 ms
58,036 KB
testcase_02 AC 506 ms
57,936 KB
testcase_03 AC 504 ms
57,972 KB
testcase_04 AC 513 ms
57,800 KB
testcase_05 AC 505 ms
57,940 KB
testcase_06 AC 507 ms
57,904 KB
testcase_07 AC 507 ms
57,984 KB
testcase_08 AC 508 ms
57,812 KB
testcase_09 AC 508 ms
57,816 KB
testcase_10 AC 92 ms
50,456 KB
testcase_11 AC 136 ms
51,200 KB
testcase_12 AC 303 ms
54,316 KB
testcase_13 AC 93 ms
50,684 KB
testcase_14 AC 290 ms
54,092 KB
testcase_15 AC 74 ms
50,360 KB
testcase_16 AC 217 ms
52,708 KB
testcase_17 AC 142 ms
51,396 KB
testcase_18 AC 130 ms
51,104 KB
testcase_19 AC 82 ms
50,612 KB
testcase_20 AC 234 ms
53,100 KB
testcase_21 AC 232 ms
53,132 KB
testcase_22 AC 91 ms
50,504 KB
testcase_23 AC 188 ms
52,284 KB
testcase_24 AC 202 ms
52,364 KB
testcase_25 AC 85 ms
50,560 KB
testcase_26 AC 254 ms
53,372 KB
testcase_27 AC 217 ms
52,776 KB
testcase_28 AC 114 ms
50,876 KB
testcase_29 AC 138 ms
51,376 KB
testcase_30 AC 73 ms
50,272 KB
testcase_31 AC 70 ms
50,356 KB
testcase_32 AC 73 ms
50,212 KB
testcase_33 AC 70 ms
50,272 KB
testcase_34 AC 67 ms
50,172 KB
testcase_35 AC 72 ms
50,268 KB
testcase_36 AC 66 ms
50,260 KB
testcase_37 AC 72 ms
50,196 KB
testcase_38 AC 70 ms
50,344 KB
testcase_39 AC 68 ms
50,196 KB
testcase_40 AC 510 ms
58,020 KB
testcase_41 AC 513 ms
57,940 KB
testcase_42 AC 510 ms
57,936 KB
testcase_43 AC 510 ms
58,004 KB
testcase_44 AC 507 ms
57,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using P = pair<int, int>;
using PL = pair<lint, lint>;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
#define ALL(a)  (a).begin(),(a).end()
constexpr int MOD = 1000000007;
constexpr lint B1 = 1532834020;
constexpr lint M1 = 2147482409;
constexpr lint B2 = 1388622299;
constexpr lint M2 = 2147478017;
constexpr int INF = 2147483647;
void yes(bool expr) {cout << (expr ? "Yes" : "No") << "\n";}
constexpr int MAX = 2000000;
lint fact[MAX], finv[MAX], inv[MAX];
void cominit() {
  fact[0] = fact[1] = 1;
  finv[0] = finv[1] = 1;
  inv[1] = 1;
  FOR(i, 2, MAX){
    fact[i] = fact[i-1] * i % MOD;
    inv[i] = MOD - inv[MOD%i] * (MOD/i) % MOD;
    finv[i] = finv[i-1] * inv[i] % MOD;
  }
}
lint power(lint x, lint n, lint mod) {
  lint ret = 1;
  while(n > 0) {
    if(n & 1) (ret *= x) %= mod;
    (x *= x) %= mod;
    n >>= 1;
  }
  return ret;
}
lint ncr(lint n, lint r, lint mod) {
  if(n < 0 || r < 0 || n-r < 0) return 0;
  return fact[n]*finv[r]%mod*finv[n-r]%mod;
}
int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  lint N, M;
  cin >> N >> M;
  vector<vector<lint>> S(N+1, vector<lint>(M+1));
  REP(i, N) REP(j, M) cin >> S[i][j];
  lint ans = 0;
  cominit();
  REP(i, N) REP(j, M) {
    ans = (ans + ncr(S[i][j]-1+i+j, i+j, MOD) * ncr(i+j, j, MOD) % MOD) % MOD;
    ans = (ans + ((S[i][j] * ncr(S[i][j]+i+j, i+j, MOD) % MOD - S[i+1][j] * ncr(S[i+1][j]+i+j, i+j, MOD) % MOD + MOD ) * power(i+j+1, MOD-2, MOD) % MOD * ncr(i+j, j, MOD) % MOD)) % MOD;
    ans = (ans + ((S[i][j] * ncr(S[i][j]+i+j, i+j, MOD) % MOD - S[i][j+1] * ncr(S[i][j+1]+i+j, i+j, MOD) % MOD + MOD ) * power(i+j+1, MOD-2, MOD) % MOD * ncr(i+j, j, MOD) % MOD)) % MOD;
  }
  cout << ans << endl;
}
0