# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
114741 | PeppaPig | Tents (JOI18_tents) | C++14 | 158 ms | 70904 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define long long long
using namespace std;
const int N = 3e3+5;
const int M = 1e9+7;
int n, m;
long dp[N][N];
int main() {
scanf("%d %d", &n, &m);
for(int i = 0; i <= n; i++) for(int j = 0; j <= m; j++) {
if(i == 0 || j == 0) dp[i][j] = 1;
else {
dp[i][j] = (dp[i][j] + dp[i - 1][j]) % M;
dp[i][j] = (dp[i][j] + 4ll * j * dp[i - 1][j - 1]) % M;
if(j > 1) dp[i][j] = (dp[i][j] + 1ll * (1ll * j * (j - 1) / 2) * dp[i - 1][j - 2]) % M;
if(i > 1) dp[i][j] = (dp[i][j] + 1ll * j * (i - 1) * dp[i - 2][j - 1]) % M;
}
}
printf("%lld\n", dp[n][m] - 1);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |