結果

問題 No.533 Mysterious Stairs
ユーザー tottoripapertottoripaper
提出日時 2017-08-04 21:19:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 1,616 ms
コンパイル使用メモリ 165,964 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-10-11 20:57:05
合計ジャッジ時間 2,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 8 ms
6,272 KB
testcase_21 AC 8 ms
6,272 KB
testcase_22 AC 21 ms
12,288 KB
testcase_23 AC 51 ms
26,496 KB
testcase_24 AC 51 ms
26,880 KB
testcase_25 AC 8 ms
6,144 KB
testcase_26 AC 44 ms
23,680 KB
testcase_27 AC 14 ms
9,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:40:29: warning: iteration 2 invokes undefined behavior [-Waggressive-loop-optimizations]
   40 |         res = (res + dp[N][i]) % MOD;
      |                      ~~~~~~~^
main.cpp:39:18: note: within this loop
   39 |     for(int i=1;i<=3;++i){
      |                 ~^~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)

using ll = long long;
using P = std::tuple<int,int>;

const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};

ll dp[1000100][3];
const ll MOD = 1e9 + 7;

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    std::cin >> N;

    dp[1][1] = 1ll;
    dp[2][2] = 1ll;
    dp[3][3] = 1ll;
    for(int i=1;i<N;++i){
        for(int j=1;j<=3;++j){
            for(int k=1;k<=3;++k){
                if(k == j){continue;}
                if(i + k > N){continue;}

                dp[i + k][k] = (dp[i + k][k] + dp[i][j]) % MOD;
            }
        }
    }

    ll res = 0ll;
    for(int i=1;i<=3;++i){
        res = (res + dp[N][i]) % MOD;
    }
    
    std::cout << res << std::endl;
}
0