結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-02 03:09:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 1,000 ms |
| コード長 | 3,369 bytes |
| コンパイル時間 | 1,589 ms |
| コンパイル使用メモリ | 166,364 KB |
| 実行使用メモリ | 15,344 KB |
| 最終ジャッジ日時 | 2024-11-30 08:12:49 |
| 合計ジャッジ時間 | 2,633 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );
using namespace std;
using ll = long long;
template <int MOD>
class ModInt {
using lint = long long;
public:
int val;
// constructor
ModInt(lint v = 0) : val(v % MOD) {
if (val < 0) val += MOD;
};
// assignment
ModInt& operator=(const ModInt& x) {
if (this != &x) { this->val = x.val; }
return *this;
}
// unary operator
ModInt operator+() const { return ModInt(val); }
ModInt operator-() const { return ModInt(MOD - val); }
ModInt operator~() const { return *this ^ (MOD - 2); }
// increment / decrement
ModInt& operator++() { return *this += 1; }
ModInt& operator--() { return *this -= 1; }
ModInt operator++(int) {
ModInt before = *this;
++(*this);
return before;
}
ModInt operator--(int) {
ModInt before = *this;
--(*this);
return before;
}
// arithmetic
ModInt operator+(const ModInt& x) const { return ModInt(*this) += x; }
ModInt operator-(const ModInt& x) const { return ModInt(*this) -= x; }
ModInt operator*(const ModInt& x) const { return ModInt(*this) *= x; }
ModInt operator%(const ModInt& x) const { return ModInt(*this) %= x; }
ModInt operator/(const ModInt& x) const { return ModInt(*this) /= x; }
ModInt operator^(const ModInt& x) const { return ModInt(*this) ^= x; }
// compound assignment
ModInt& operator+=(const ModInt& x) {
if ((val += x.val) >= MOD) val -= MOD;
return *this;
}
ModInt& operator-=(const ModInt& x) {
if ((val -= x.val) < 0) val += MOD;
return *this;
}
ModInt& operator*=(const ModInt& x) {
val = lint(val) * x.val % MOD;
return *this;
}
ModInt& operator%=(const ModInt& x) {
val %= x.val;
return *this;
}
ModInt& operator/=(const ModInt& x) { return *this *= ~x; }
ModInt& operator^=(const ModInt& x) {
int n = x.val;
ModInt b = *this;
if (n < 0) n = -n, b = ~b;
*this = 1;
while (n > 0) {
if (n & 1) *this *= b;
n >>= 1;
b *= b;
}
return *this;
}
// compare
bool operator==(const ModInt& b) const { return val == b.val; }
bool operator!=(const ModInt& b) const { return val != b.val; }
bool operator<(const ModInt& b) const { return val < b.val; }
bool operator<=(const ModInt& b) const { return val <= b.val; }
bool operator>(const ModInt& b) const { return val > b.val; }
bool operator>=(const ModInt& b) const { return val >= b.val; }
// I/O
friend std::ostream& operator<<(std::ostream& os, const ModInt& x) noexcept { return os << x.val; }
friend std::istream& operator>>(std::istream& is, ModInt& x) noexcept { return is >> x.val; }
};
using mint = ModInt<1000000007>;
mint dp[1000001][3];
int main(){
int n;
cin >> n;
dp[0][0] = 1;
rep(i, n){
dp[i+1][0] += dp[i][2];
dp[i+1][1] += dp[i][0];
rep(j, 2) dp[i+1][2] += dp[i][j];
}
mint ans = 0;
rep(i, 3) ans += dp[n-1][i];
cout << ans << endl;
}