結果

問題 No.824 Many Shifts Hard
ユーザー SumitacchanSumitacchan
提出日時 2019-04-27 01:30:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 2,735 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 173,940 KB
実行使用メモリ 219,828 KB
最終ジャッジ日時 2023-08-17 03:58:53
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 15 ms
11,608 KB
testcase_03 AC 87 ms
61,868 KB
testcase_04 AC 49 ms
35,156 KB
testcase_05 AC 229 ms
164,792 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 22 ms
15,592 KB
testcase_08 AC 208 ms
148,020 KB
testcase_09 AC 131 ms
93,248 KB
testcase_10 AC 6 ms
5,736 KB
testcase_11 AC 18 ms
13,584 KB
testcase_12 AC 71 ms
51,684 KB
testcase_13 AC 179 ms
129,008 KB
testcase_14 AC 305 ms
219,732 KB
testcase_15 AC 270 ms
193,704 KB
testcase_16 AC 18 ms
14,196 KB
testcase_17 AC 306 ms
218,248 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 308 ms
219,684 KB
testcase_20 AC 310 ms
219,828 KB
testcase_21 AC 3 ms
4,384 KB
testcase_22 AC 308 ms
219,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define bit_exist(x, n) ((x >> n) & 1)
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod

int modpow(int x, int n, int m){
    int a = 1;
    IREP(i, 64){
        a = (a * a) % m;
        if(((n >> i) & 1) == 1) a = (a * x) % m;
    }
    return a;
}

signed main(){

    int N, K; cin >> N >> K;
    
    vector<mat> dp(K + 1, mat(K + 1, vec(K + 1, 0)));
    int invN = modpow(N, mod - 2, mod);
    int p = ((N - 2) * invN) % mod;
    int q = ((N - 1) * invN) % mod;
    dp[0][0][0] = 1;
    REP(i, K){
        REP(j, i + 1){
            REP(k, j + 1){
                Add(dp[i + 1][j + 1][k], dp[i][j][k] * invN);
                Add(dp[i + 1][j][k + 1], dp[i][j][k] * invN);
                Add(dp[i + 1][j][k], dp[i][j][k] * p);
            }
        }
    }

    vec pe(K + 1, 0);
    REP(i, K + 1){
        if(i > 0) pe[i] = pe[i - 1];
        FOR(j, i, K + 1) Add(pe[i], dp[K][j][i]);
    }
    REP(i, K + 1) Mult(pe[i], modpow(N, K, mod));
    int ans = 0;
    FOR(i, 1, N + 1) Add(ans, i * pe[min(N - i, K)]);

    cout << ans << endl;

    return 0;
}
0