結果
| 問題 |
No.97 最大の値を求めるくえり
|
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-05-06 22:10:43 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,588 bytes |
| コンパイル時間 | 627 ms |
| コンパイル使用メモリ | 31,488 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 12:30:21 |
| 合計ジャッジ時間 | 2,359 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 18 |
コンパイルメッセージ
main.c: In function 'in':
main.c:8:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
8 | #define gc() getchar_unlocked()
| ^~~~~~~~~~~~~~~~
main.c:16:24: note: in expansion of macro 'gc'
16 | int n = 0, c = gc();
| ^~
main.c: In function 'out':
main.c:9:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration]
9 | #define pc(c) putchar_unlocked(c)
| ^~~~~~~~~~~~~~~~
main.c:26:17: note: in expansion of macro 'pc'
26 | if (!n) pc('0');
| ^~
ソースコード
// yukicoder: 97 最大の値を求めるくえり
// 2019.5.6 bal4u
#include <stdio.h>
#include <stdlib.h>
#if 1
#define gc() getchar_unlocked()
#define pc(c) putchar_unlocked(c)
#else
#define gc() getchar()
#define pc(c) putchar(c)
#endif
int in() // 整数の入力(負数対応)
{
int n = 0, c = gc();
do n = 10*n + (c & 0xf), c = gc(); while (c >= '0');
return n;
}
void out(int n) // 非負整数の表示(出力)
{
int i;
char b[20];
if (!n) pc('0');
else {
i = 0; while (n) b[i++] = n % 10 + '0', n /= 10;
while (i--) pc(b[i]);
}
}
unsigned x = 123456789, y = 362436069, z = 521288629, w = 88675123;
unsigned xor128() {
unsigned t = x ^ (x << 11);
x = y, y = z, z = w;
return w = w ^ (w >> 19) ^ (t ^ (t >> 8));
}
#define M 100003
#define MAX M
int inv[MAX+10];
int a[MAX+10]; int N;
void generateA() {
int i = N; while (i--) a[i] = (int)(xor128() % M);
}
int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }
int bsch(int x) {
int l = 0, r = N, m, ans;
while (l < r) {
m = (l + r) >> 1;
if (a[m] <= x) l = m+1; else r = m;
}
if (l <= 0) ans = a[0];
else ans = a[l-1];
if (ans == 0) {
int i; for (i = 0; ; i++) if (a[i]) { ans = a[i]; break; }
}
return ans;
}
int main()
{
int i, Q, q;
inv[1] = 1; for (i = 2; i <= MAX; i++) {
inv[i] = (M + (-(M/i)*(long long)inv[M % i]) % M) % M;
}
N = in(), Q = in();
generateA();
qsort(a, N, sizeof(int), cmp);
while (Q--) {
q = in();
if (q == 0) pc('0');
else out((q * (long long)bsch(((M-1) * (long long)inv[q]) % M)) % M);
pc('\n');
}
return 0;
}
bal4u