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