結果
問題 | No.97 最大の値を求めるくえり |
ユーザー | natsugir |
提出日時 | 2014-12-07 20:33:23 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,657 bytes |
コンパイル時間 | 580 ms |
コンパイル使用メモリ | 63,104 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 16:31:48 |
合計ジャッジ時間 | 3,849 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 9 ms
5,376 KB |
testcase_02 | AC | 98 ms
5,376 KB |
testcase_03 | AC | 100 ms
5,376 KB |
testcase_04 | AC | 20 ms
5,376 KB |
testcase_05 | AC | 20 ms
5,376 KB |
testcase_06 | AC | 21 ms
5,376 KB |
testcase_07 | AC | 26 ms
5,376 KB |
testcase_08 | AC | 36 ms
5,376 KB |
testcase_09 | AC | 55 ms
5,376 KB |
testcase_10 | AC | 84 ms
5,376 KB |
testcase_11 | AC | 118 ms
5,376 KB |
testcase_12 | AC | 151 ms
5,376 KB |
testcase_13 | AC | 598 ms
5,376 KB |
testcase_14 | AC | 347 ms
5,376 KB |
testcase_15 | AC | 177 ms
5,376 KB |
testcase_16 | AC | 117 ms
5,376 KB |
testcase_17 | AC | 63 ms
5,376 KB |
testcase_18 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:43:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | scanf("%d%d", &N, &Q); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:49:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d", &q); | ~~~~~^~~~~~~~~~ main.cpp:58:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | scanf("%d", &q); | ~~~~~^~~~~~~~~~
ソースコード
#include<cstdio> #include<iostream> #include<vector> #include<algorithm> #include<string> #include<cstring> using namespace std; typedef long long LL; typedef vector<int> VI; #define REP(i,n) for(int i=0; i<int(n); i++) #define EACH(i,c) for(__typeof((c).begin()) i=(c).begin();i!=(c).end();i++) template<class T> inline T &amin(T &a, T b) { if (a>b) a=b; return a; } template<class T> inline T &amax(T &a, T b) { if (a<b) a=b; return a; } 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; } const LL MOD = 100003; LL powMod(LL x, LL y, LL m) { LL r = 1; for (; y; y>>=1) { if (y&1) r = r * x % m; x = x * x % m; } return r; } int N, Q; int A[100111]; int main() { scanf("%d%d", &N, &Q); generateA(N, A); if (N < 1000) { REP ($, Q) { int q; scanf("%d", &q); int ans = 0; REP (i, N) amax<int>(ans, (LL)q * A[i] % MOD); printf("%d\n", ans); } } else { sort(A, A+N); REP ($, Q) { int q; scanf("%d", &q); LL inv_q = powMod(q, MOD-2, MOD); int ans; for (ans=MOD-1; ans; ans--) { LL z = ans * inv_q % MOD; int p = lower_bound(A, A+N, z) - A; if (p != N && A[p] == z) { break; } } printf("%d\n", ans); } } return 0; }