제출 #870069

#제출 시각아이디문제언어결과실행 시간메모리
870069blackslex캥거루 (CEOI16_kangaroo)C++17
100 / 100
47 ms55172 KiB
#include<bits/stdc++.h>

using namespace std;
using ll = long long;

const int N = 2005, M = 1e9 + 7;
ll n, cs, cf, dp[N][N][3];

int main() {
    scanf("%lld %lld %lld", &n, &cs, &cf);
    if (cs == 1 || cf == 1) dp[1][1][1] = 1;
    else dp[1][1][0] = 1;
    for (int i = 1; i < n; i++) {
        if (i + 1 == cs || i + 1 == cf) {
            for (int j = 1; j <= i; j++) {
                for (int k = 0; k < 2; k++) {
                    dp[i + 1][j + 1][k + 1] += dp[i][j][k]; dp[i + 1][j + 1][k + 1] %= M; // fix, no merge
                    dp[i + 1][j][k + 1] += dp[i][j][k]; dp[i + 1][j][k + 1] %= M; // fix, merge
                }
            }
        } else {
            for (int j = 1; j <= i; j++) {
                for (int k = 0; k < 3; k++) {
                    dp[i + 1][j + 1][k] += (j + 1 - k) * dp[i][j][k]; dp[i + 1][j + 1][k] %= M; // insert, no merge
                    dp[i + 1][j - 1][k] += (j - 1) * dp[i][j][k]; dp[i + 1][j - 1][k] %= M; // insert, merge
                }
            }
        }
    }
    printf("%lld", dp[n][1][2]);
}

컴파일 시 표준 에러 (stderr) 메시지

kangaroo.cpp: In function 'int main()':
kangaroo.cpp:10:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   10 |     scanf("%lld %lld %lld", &n, &cs, &cf);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...