結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー tarattata1tarattata1
提出日時 2021-05-29 00:40:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,895 bytes
コンパイル時間 991 ms
コンパイル使用メモリ 89,928 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 11:54:18
合計ジャッジ時間 21,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 55 ms
5,248 KB
testcase_02 AC 146 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 869 ms
5,248 KB
testcase_06 AC 104 ms
5,248 KB
testcase_07 AC 1,124 ms
5,248 KB
testcase_08 AC 294 ms
5,248 KB
testcase_09 AC 428 ms
5,248 KB
testcase_10 AC 33 ms
5,248 KB
testcase_11 AC 1,225 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 WA -
testcase_14 AC 115 ms
5,248 KB
testcase_15 AC 1,388 ms
5,248 KB
testcase_16 AC 1,465 ms
5,248 KB
testcase_17 AC 1,444 ms
5,248 KB
testcase_18 AC 1,422 ms
5,248 KB
testcase_19 AC 1,458 ms
5,248 KB
testcase_20 AC 1,434 ms
5,248 KB
testcase_21 AC 1,424 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 1,335 ms
5,248 KB
testcase_24 AC 1,495 ms
5,248 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <cassert>
#include <numeric>
#include <functional>
#include <ctime>
#pragma warning(disable:4996) 

//#define ATCODER
#ifdef ATCODER
#include <atcoder/all>
#endif

typedef long long ll;
typedef unsigned long long ull;
#define LINF  9223300000000000000
#define LINF2 1223300000000000000
#define LINF3 1000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;

using namespace std;
#ifdef ATCODER
using namespace atcoder;
#endif

ll dp[2][1000005];

void solve()
{    
    int n, K, L;
    scanf("%d%d%d", &n, &K, &L);
    int pre = 0, cur = 1;
    dp[pre][0] = 1;
    for (int i = 0; i < K; i++) {
        for (int j = 0; j < n; j++) {
            dp[cur][j] = 0;
        }
        for (int j = 0; j < n; j++) {
            int i0 = (j + 1) % n, i1 = (j + L + 1) % n;
            if (i0 <= i1) {
                dp[cur][i0] = (dp[cur][i0] + dp[pre][j]) % MOD;
                dp[cur][i1] = (dp[cur][i1] - dp[pre][j] +MOD) % MOD;
            }
            else {
                dp[cur][0]  = (dp[cur][0]  + dp[pre][j]) % MOD;
                dp[cur][i1] = (dp[cur][i1] - dp[pre][j] +MOD) % MOD;
                dp[cur][i0] = (dp[cur][i0] + dp[pre][j]) % MOD;
            }
        }
        for (int j = 1; j < n; j++) {
            dp[cur][j] = (dp[cur][j] + dp[cur][j - 1]) % MOD;
        }
        swap(pre, cur);
    }
    for (int i = 0; i < n; i++) {
        printf("%lld\n", dp[pre][i]);
    }

    return;
}

int main()
{
#if 1
    solve();
#else
    int T, t;
    scanf("%d", &T);
    for (t = 0; t < T; t++) {
        //printf("Case #%d: ", t + 1);
        solve();
    }
#endif
    return 0;
}


0