mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-25 07:11:58 +00:00
P1990 覆盖墙壁
R44593612
This commit is contained in:
parent
7ef2844a8e
commit
144492f9d4
15
Luogu/problem/P1990/P1990.cpp
Normal file
15
Luogu/problem/P1990/P1990.cpp
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, dp[1000009];
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
dp[1] = 1, dp[2] = 2, dp[3] = 5;
|
||||||
|
cin >> n;
|
||||||
|
for (int i = 4; i <= n; i++) {
|
||||||
|
dp[i] = (dp[i - 1] * 2 + dp[i - 3]) % 10000;
|
||||||
|
}
|
||||||
|
cout << dp[n] << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user