結果

問題 No.1202 お菓子の食べ方
ユーザー leaf_1415leaf_1415
提出日時 2020-08-30 01:21:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 2,006 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 80,204 KB
実行使用メモリ 42,532 KB
最終ジャッジ日時 2024-11-14 17:47:00
合計ジャッジ時間 10,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
42,396 KB
testcase_01 AC 187 ms
42,488 KB
testcase_02 AC 186 ms
42,460 KB
testcase_03 AC 185 ms
42,464 KB
testcase_04 AC 185 ms
42,388 KB
testcase_05 AC 186 ms
42,320 KB
testcase_06 AC 186 ms
42,460 KB
testcase_07 AC 188 ms
42,496 KB
testcase_08 AC 184 ms
42,464 KB
testcase_09 AC 185 ms
42,496 KB
testcase_10 AC 37 ms
35,200 KB
testcase_11 AC 53 ms
35,968 KB
testcase_12 AC 114 ms
39,904 KB
testcase_13 AC 39 ms
35,164 KB
testcase_14 AC 112 ms
39,388 KB
testcase_15 AC 36 ms
35,032 KB
testcase_16 AC 84 ms
38,752 KB
testcase_17 AC 56 ms
37,584 KB
testcase_18 AC 53 ms
35,840 KB
testcase_19 AC 37 ms
34,944 KB
testcase_20 AC 90 ms
40,064 KB
testcase_21 AC 92 ms
37,760 KB
testcase_22 AC 41 ms
35,328 KB
testcase_23 AC 78 ms
42,124 KB
testcase_24 AC 77 ms
40,452 KB
testcase_25 AC 39 ms
37,760 KB
testcase_26 AC 97 ms
40,468 KB
testcase_27 AC 85 ms
42,324 KB
testcase_28 AC 47 ms
38,328 KB
testcase_29 AC 57 ms
38,464 KB
testcase_30 AC 32 ms
35,992 KB
testcase_31 AC 33 ms
34,948 KB
testcase_32 AC 33 ms
35,692 KB
testcase_33 AC 32 ms
36,240 KB
testcase_34 AC 32 ms
34,864 KB
testcase_35 AC 32 ms
34,920 KB
testcase_36 AC 32 ms
35,132 KB
testcase_37 AC 32 ms
34,708 KB
testcase_38 AC 32 ms
35,448 KB
testcase_39 AC 32 ms
35,876 KB
testcase_40 AC 185 ms
42,396 KB
testcase_41 AC 182 ms
42,532 KB
testcase_42 AC 183 ms
42,384 KB
testcase_43 AC 182 ms
42,496 KB
testcase_44 AC 183 ms
42,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 1000000007

using namespace std;
typedef pair<llint, llint> P;

const int FACT_MAX = 2000005;
llint fact[FACT_MAX], fact_inv[FACT_MAX];

llint modpow(llint a, llint n)
{
	if(n == 0) return 1;
	if(n % 2){
		return ((a%mod) * (modpow(a, n-1)%mod)) % mod;
	}
	else{
		return modpow((a*a)%mod, n/2) % mod;
	}
}

void make_fact()
{
	llint val = 1;
	fact[0] = 1;
	for(int i = 1; i < FACT_MAX; i++){
		val *= i;
		val %= mod;
		fact[i] = val;
	}
	fact_inv[FACT_MAX-1] = modpow(fact[FACT_MAX-1], mod-2);
	for(int i = FACT_MAX-2; i >= 0; i--){
		fact_inv[i] = fact_inv[i+1] * (i+1) % mod;
	}
}

llint comb(llint n, llint k)
{
	llint ret = 1;
	ret *= fact[n];
	ret *= fact_inv[k], ret %= mod;
	ret *= fact_inv[n-k], ret %= mod;
	return ret;
}

llint h, w;
llint a[1005][1005];

llint get(llint x, llint y, llint z)
{
	return comb(x+y, y) * comb(x+y+z, z) % mod;
}
llint sum(llint x, llint y, llint h)
{
	if(h < 0) return 0;
	return comb(x+y+h+1, h) * comb(x+y, y) % mod;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	make_fact();
	
	cin >> h >> w;
	for(int y = 0; y < h; y++){
		for(int x = 0; x < w; x++){
			cin >> a[x][y];
		}
	}
	
	llint ans = 0;
	for(int y = 0; y < h; y++){
		for(int x = 0; x < w; x++){
			ans += sum(x, y, a[x][y]-1) + mod - sum(x, y, a[x+1][y]-1), ans %= mod;
			ans += sum(x, y, a[x][y]-1) + mod - sum(x, y, a[x][y+1]-1), ans %= mod;
			ans += get(x, y, a[x][y]-1), ans %= mod;
		}
	}
	cout << ans << endl;
	
	return 0;
}
0