結果

問題 No.1785 Inequality Signs
ユーザー SSRSSSRS
提出日時 2021-12-14 00:06:46
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 2,028 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 175,672 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-07-23 00:05:20
合計ジャッジ時間 6,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 20 ms
6,940 KB
testcase_02 AC 90 ms
18,316 KB
testcase_03 AC 116 ms
19,484 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 50 ms
11,340 KB
testcase_06 AC 106 ms
19,044 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 102 ms
18,688 KB
testcase_09 AC 18 ms
6,940 KB
testcase_10 AC 73 ms
12,536 KB
testcase_11 AC 24 ms
6,944 KB
testcase_12 AC 44 ms
10,884 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 57 ms
11,496 KB
testcase_15 AC 47 ms
11,108 KB
testcase_16 AC 34 ms
7,596 KB
testcase_17 AC 73 ms
12,484 KB
testcase_18 AC 73 ms
12,596 KB
testcase_19 AC 61 ms
11,672 KB
testcase_20 AC 65 ms
12,148 KB
testcase_21 AC 60 ms
11,848 KB
testcase_22 AC 22 ms
6,944 KB
testcase_23 AC 34 ms
7,456 KB
testcase_24 AC 116 ms
19,460 KB
testcase_25 AC 48 ms
11,108 KB
testcase_26 AC 45 ms
11,052 KB
testcase_27 AC 121 ms
19,452 KB
testcase_28 AC 120 ms
19,580 KB
testcase_29 AC 120 ms
19,572 KB
testcase_30 AC 120 ms
19,580 KB
testcase_31 AC 120 ms
19,584 KB
testcase_32 AC 120 ms
19,460 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 7 ms
6,940 KB
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 103 ms
18,664 KB
testcase_37 AC 117 ms
19,460 KB
testcase_38 AC 99 ms
18,624 KB
testcase_39 AC 29 ms
7,312 KB
testcase_40 AC 43 ms
10,716 KB
testcase_41 AC 65 ms
11,992 KB
testcase_42 AC 117 ms
19,512 KB
testcase_43 AC 117 ms
19,348 KB
testcase_44 AC 98 ms
18,752 KB
testcase_45 AC 42 ms
10,840 KB
testcase_46 AC 95 ms
18,792 KB
testcase_47 AC 58 ms
11,664 KB
testcase_48 AC 73 ms
12,612 KB
testcase_49 AC 6 ms
6,940 KB
testcase_50 AC 99 ms
18,712 KB
testcase_51 AC 10 ms
6,940 KB
testcase_52 AC 7 ms
6,940 KB
testcase_53 AC 14 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
long long modpow(long long a, long long b){
	long long ans = 1;
	while (b > 0){
		if (b % 2 == 1){
			ans *= a;
			ans %= MOD;
		}
		a *= a;
		a %= MOD;
		b /= 2;
	}
	return ans;
}
long long modinv(long long a){
	return modpow(a, MOD - 2);
}
vector<long long> mf = {1};
vector<long long> mfi = {1};
long long modfact(int n){
	if (mf.size() > n){
		return mf[n];
	} else {
		for (int i = mf.size(); i <= n; i++){
			long long next = mf.back() * i % MOD;
			mf.push_back(next);
			mfi.push_back(modinv(next));
		}
		return mf[n];
	}
}
long long modfactinv(int n){
	if (mfi.size() > n){
		return mfi[n];
	} else {
		return modinv(modfact(n));
	}
}
long long modbinom(int n, int k){
	if (n < 0 || k < 0 || k > n){
		return 0;
	} else {
		return modfact(n) * modfactinv(k) % MOD * modfactinv(n - k) % MOD;
	}
}
template <typename T>
struct segment_tree{
	int N;
	vector<T> ST;
	segment_tree(vector<T> A){
		int n = A.size();
		N = 1;
		while (N < n){
			N *= 2;
		}
		ST = vector<T>(N * 2 - 1, 1);
		for (int i = 0; i < n; i++){
			ST[N - 1 + i] = A[i];
		}
		for (int i = N - 2; i >= 0; i--){
			ST[i] = ST[i * 2 + 1] * ST[i * 2 + 2] % MOD;
		}
	}
	T operator [](int k){
		return ST[N - 1 + k];
	}
	T range_product(int L, int R, int i, int l, int r){
		if (R <= l || r <= L){
			return 1;
		} else if (L <= l && r <= R){
			return ST[i];
		} else {
			int m = (l + r) / 2;
			return range_product(L, R, i * 2 + 1, l, m) * range_product(L, R, i * 2 + 2, m, r) % MOD;;
		}
	}
	T range_product(int L, int R){
		return range_product(L, R, 0, 0, N);
	}
};
int main(){
  int N, K;
  cin >> N >> K;
  long long ans = 0;
  //K+i, K+i-1, ..., K+i-N+1
  //K-N+1~K+N-1
  vector<long long> A(N * 2);
  for (int i = 0; i < N * 2; i++){
    A[i] = K - N + 1 + i;
  }
  segment_tree<long long> ST(A);
  for (int i = 0; i <= N - 1; i++){
    ans += modbinom(N - 1, i) * ST.range_product(i, i + N) % MOD * modfactinv(N) % MOD;
  }
  ans %= MOD;
  cout << ans << endl;
}
0