結果
問題 | No.492 IOI数列 |
ユーザー | はまやんはまやん |
提出日時 | 2017-03-10 23:18:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,920 bytes |
コンパイル時間 | 1,953 ms |
コンパイル使用メモリ | 170,460 KB |
実行使用メモリ | 501,860 KB |
最終ジャッジ日時 | 2024-06-24 08:41:16 |
合計ジャッジ時間 | 4,492 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) typedef long long ll; #define mod1 1000000007LL struct Mat1 { // by MrDindows using T = ll; T a[2][2]; Mat1() { memset(a, 0, sizeof(a)); } static Mat1 One() { Mat1 r; r[0][0] = r[1][1] = 1; return r; } T* operator[](int idx) { return a[idx]; } const T* operator[](int idx) const { return a[idx]; } Mat1 operator+(const Mat1& b) { Mat1 r; rep(i, 0, 2) rep(j, 0, 2) { r[i][j] = a[i][j] + b[i][j]; if (r[i][j] >= mod1) { r[i][j] -= mod1; } } return r; } Mat1& operator*=(const Mat1& b) { return *this = *this * b; } Mat1 operator*(const Mat1& b) { Mat1 r; rep(i, 0, 2) rep(j, 0, 2) { rep(k, 0, 2) { r[i][j] += a[i][k] * b[k][j]; } r[i][j] %= mod1; } return r; } Mat1 power(ll n) { if (n == 0) return Mat1::One(); if (n == 1) return *this; Mat1 t = power(n / 2); t = t * t; if (n % 2) { t = t * *this; } return t; } void print() { rep(i, 0, 2) { cout << "[" << a[i][0] << ", " << a[i][1] << "]" << endl; } cout << endl; } bool empty() { return a[0][0] == 1 && a[0][1] == 0 && a[1][0] == 0 && a[1][1] == 1; } void clear() { *this = Mat1::One(); } }; ll N; //----------------------------------------------------------------- int main() { cin >> N; if (N == 1) { printf("1\n1\n"); return 0; } Mat1 m; m.a[0][0] = 100; m.a[0][1] = 1; m.a[1][0] = 0; m.a[1][1] = 1; m = m.power(N - 1); ll ans = (m.a[0][0] + m.a[0][1]) % mod1; cout << ans << endl; string s = "1"; rep(i, 0, N - 1) s += "01"; int mag = 21; if (s.length() < 21) { cout << s << endl; return 0; } if (s.length() % 21 == 0) { cout << 0 << endl; return 0; } if (s.length() % 22 == 0) { cout << 0 << endl; return 0; } int cnt = s.length() / 22 * 22; string sa = s.substr(cnt); cout << sa << endl; //101010101010101010101 }