結果
問題 | No.97 最大の値を求めるくえり |
ユーザー | kimiyuki |
提出日時 | 2016-12-20 17:29:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 304 ms / 5,000 ms |
コード長 | 1,883 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 87,220 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-14 11:29:05 |
合計ジャッジ時間 | 6,681 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 257 ms
5,248 KB |
testcase_03 | AC | 254 ms
5,248 KB |
testcase_04 | AC | 156 ms
5,248 KB |
testcase_05 | AC | 165 ms
5,248 KB |
testcase_06 | AC | 156 ms
5,248 KB |
testcase_07 | AC | 162 ms
5,248 KB |
testcase_08 | AC | 179 ms
5,248 KB |
testcase_09 | AC | 196 ms
5,248 KB |
testcase_10 | AC | 241 ms
5,248 KB |
testcase_11 | AC | 282 ms
5,248 KB |
testcase_12 | AC | 304 ms
5,248 KB |
testcase_13 | AC | 214 ms
5,248 KB |
testcase_14 | AC | 203 ms
5,248 KB |
testcase_15 | AC | 199 ms
5,248 KB |
testcase_16 | AC | 188 ms
5,248 KB |
testcase_17 | AC | 199 ms
5,248 KB |
testcase_18 | AC | 194 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <array> #include <set> #include <map> #include <queue> #include <tuple> #include <unordered_set> #include <unordered_map> #include <functional> #include <cassert> #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) #define repeat_reverse(i,n) for (int i = (n)-1; (i) >= 0; --(i)) typedef long long ll; using namespace std; template <class T> void setmax(T & a, T const & b) { if (a < b) a = b; } ll powi(ll x, ll y, ll p) { // O(log y) assert (y >= 0); x = (x % p + p) % p; ll z = 1; for (ll i = 1; i <= y; i <<= 1) { if (y & i) z = z * x % p; x = x * x % p; } return z; } ll inv(ll x, ll p) { // p must be a prime, O(log p) assert ((x % p + p) % p != 0); return powi(x, p-2, p); } 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, vector<int> & A) { for(int i = 0; i < N; ++ i) A[i] = xor128() % 100003; } const int mod = 100003; int main() { int n, q; cin >> n >> q; vector<int> a(n); generateA(n, a); vector<int> in_a(mod); repeat (i,n) in_a[a[i]] = true; while (q --) { int b; cin >> b; int ans = -1; if (b == 0) { ans = 0; } else if (n < 1000) { ans = -1; repeat (i,n) setmax<int>(ans, a[i] *(ll) b % mod); } else { int b_inv = inv(b, mod); repeat_reverse (c,mod) { if (in_a[b_inv *(ll) c % mod]) { ans = c; break; } } } cout << ans << endl; } return 0; }