結果
問題 | No.97 最大の値を求めるくえり |
ユーザー | 👑 rin204 |
提出日時 | 2022-09-29 21:23:05 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,534 bytes |
コンパイル時間 | 3,737 ms |
コンパイル使用メモリ | 270,260 KB |
実行使用メモリ | 14,024 KB |
最終ジャッジ日時 | 2024-06-02 02:08:14 |
合計ジャッジ時間 | 11,520 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 24 ms
6,812 KB |
testcase_02 | RE | - |
testcase_03 | TLE | - |
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 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #include<atcoder/modint> using namespace std; using namespace atcoder; using mint = modint; unsigned xor128_x = 123456789, xor128_y = 362436069, xor128_z = 521288629, xor128_w = 88675123; unsigned xor128() { unsigned t = xor128_x ^ (xor128_x << 11); xor128_x = xor128_y; xor128_y = xor128_z; xor128_z = xor128_w; return xor128_w = xor128_w ^ (xor128_w >> 19) ^ (t ^ (t >> 8)); } void generateA(int N, int A[]) { for(int i = 0; i < N; ++ i) A[i] = xor128() % 100003; } void solve(){ mint::set_mod(100003); int n, Q; cin >> n >> Q; int A[100100]; generateA(n, A); set<int> se; for(int i = 0; i < n; i++) se.insert(A[i]); bool small = true; if (se.size() >= 330){ small = false; } for(int i = 0; i < Q; i++){ int x; cin >> x; if(small){ int ma = 0; for(auto s:se){ int y = (mint(s) * x).val(); if(y > ma) ma = y; } cout << ma << "\n"; } else{ mint mx = x; mx = mx.inv(); for(int y = 100002; y > 0; y--){ if(se.count((mx * y).val())){ cout << y << "\n"; break; } } } } } int main(){ cin.tie(0)->sync_with_stdio(0); int t; t = 1; // cin >> t; while(t--) solve(); }