結果
問題 | No.613 Solitude by the window |
ユーザー | Sebastian King |
提出日時 | 2017-12-12 23:58:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,787 bytes |
コンパイル時間 | 1,288 ms |
コンパイル使用メモリ | 159,728 KB |
実行使用メモリ | 252,928 KB |
最終ジャッジ日時 | 2024-05-08 05:38:18 |
合計ジャッジ時間 | 4,763 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | TLE | - |
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 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> PII; const int MM = 1e9 + 7; const double eps = 1e-8; const int MAXN = 2e6 + 10; void prework(){ } void read(){ } ll n, P; ll MAGIC0, MAGIC1; void precalc(){ __int128 x = (((__int128)1)<<63) - (((__int128)1)<<63)%P - 1,t; for(MAGIC1=0;t=((__int128)1)<<MAGIC1,t<=x*(P-t%P);MAGIC1++); if(MAGIC1 < 64) MAGIC1 = 64, t = ((__int128)1)<<64; MAGIC0 = (t+P-t%P)/P; } long long mod(long long x){ long long t = ((__int128)x) * MAGIC0 >> 64; if (MAGIC0 < 0) t += x; return x - (t >> (MAGIC1 - 64)) * P; } int f[70000000]; void solve(int casi){ // cout << "Case #" << casi << ": "; cin >> n >> P; //n=1000000000000000000ll,P=1000000007ll; if (P == 2){ cout << 0 << endl; return ; } //f[0] = 1; ll x = 2; precalc(); ll T, G, U; int flag = 0; n++; if (P < 70000000){ for (int i = 2; i <= n; i++){ x = mod(x * (x + 4)); if (f[x]){ flag = 1; T = (i - f[x]); G = f[x]; U = x; break; } else{ f[x] = i; } } } else{ for (int i = 2; i <= n; i++){ x = mod(x * (x + 4)); //cerr << x << ' ' << (x >> 4) <<endl; if ((x & 15)==0){ if (f[x >> 4]){ flag = 1; T = (i - f[x >> 4]); G = f[x >> 4]; U = x; break; } else{ f[x >> 4] = i; } } } } //cout << T << endl; //cout << flag << ' ' << T << ' ' << G << ' ' << U << endl; if (flag){ x = U; ll i = (n - G) % T; for (; i; i--){ x = mod(x * (x + 4)); } cout << x << endl; } else{ cout << x << endl; } } void printans(){ } int main(){ std::ios::sync_with_stdio(false); prework(); int T = 1; // cin>>T; for(int i = 1; i <= T; i++){ read(); solve(i); printans(); } return 0; }