結果
問題 | No.469 区間加算と一致検索の問題 |
ユーザー | bal4u |
提出日時 | 2019-08-11 20:50:15 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 191 ms / 5,000 ms |
コード長 | 1,744 bytes |
コンパイル時間 | 481 ms |
コンパイル使用メモリ | 31,232 KB |
実行使用メモリ | 150,228 KB |
最終ジャッジ日時 | 2024-09-14 00:58:24 |
合計ジャッジ時間 | 8,538 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 19 ms
17,152 KB |
testcase_04 | AC | 22 ms
20,224 KB |
testcase_05 | AC | 26 ms
23,168 KB |
testcase_06 | AC | 29 ms
26,624 KB |
testcase_07 | AC | 30 ms
27,776 KB |
testcase_08 | AC | 33 ms
30,720 KB |
testcase_09 | AC | 15 ms
13,824 KB |
testcase_10 | AC | 8 ms
6,944 KB |
testcase_11 | AC | 11 ms
9,856 KB |
testcase_12 | AC | 36 ms
32,256 KB |
testcase_13 | AC | 23 ms
20,480 KB |
testcase_14 | AC | 8 ms
7,168 KB |
testcase_15 | AC | 13 ms
11,776 KB |
testcase_16 | AC | 31 ms
29,056 KB |
testcase_17 | AC | 28 ms
25,472 KB |
testcase_18 | AC | 29 ms
26,880 KB |
testcase_19 | AC | 7 ms
6,940 KB |
testcase_20 | AC | 34 ms
31,488 KB |
testcase_21 | AC | 9 ms
8,448 KB |
testcase_22 | AC | 3 ms
6,940 KB |
testcase_23 | AC | 124 ms
108,288 KB |
testcase_24 | AC | 122 ms
108,160 KB |
testcase_25 | AC | 122 ms
108,288 KB |
testcase_26 | AC | 122 ms
108,032 KB |
testcase_27 | AC | 124 ms
108,800 KB |
testcase_28 | AC | 122 ms
108,544 KB |
testcase_29 | AC | 123 ms
108,288 KB |
testcase_30 | AC | 122 ms
108,288 KB |
testcase_31 | AC | 123 ms
108,160 KB |
testcase_32 | AC | 123 ms
108,416 KB |
testcase_33 | AC | 191 ms
150,220 KB |
testcase_34 | AC | 191 ms
150,228 KB |
testcase_35 | AC | 188 ms
149,884 KB |
testcase_36 | AC | 190 ms
150,156 KB |
testcase_37 | AC | 190 ms
149,952 KB |
testcase_38 | AC | 176 ms
137,756 KB |
testcase_39 | AC | 174 ms
138,160 KB |
testcase_40 | AC | 176 ms
137,868 KB |
testcase_41 | AC | 176 ms
137,996 KB |
testcase_42 | AC | 175 ms
137,736 KB |
testcase_43 | AC | 175 ms
137,128 KB |
testcase_44 | AC | 177 ms
138,356 KB |
testcase_45 | AC | 175 ms
137,744 KB |
testcase_46 | AC | 179 ms
137,680 KB |
testcase_47 | AC | 176 ms
137,736 KB |
testcase_48 | AC | 1 ms
6,944 KB |
testcase_49 | AC | 1 ms
6,944 KB |
testcase_50 | AC | 174 ms
137,912 KB |
testcase_51 | AC | 176 ms
137,432 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:10:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 10 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:18:24: note: in expansion of macro 'gc' 18 | int n = 0, c = gc(); | ^~ main.c: In function 'out': main.c:11:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration] 11 | #define pc(c) putchar_unlocked(c) | ^~~~~~~~~~~~~~~~ main.c:31:17: note: in expansion of macro 'pc' 31 | if (!n) pc('0'); | ^~
ソースコード
// yukicoder: No.469 区間加算と一致検索の問題 // bal4u 2019.8.11 #include <stdio.h> typedef unsigned long long ll; //// 入出力関係 #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(); if (c == '-') { c = gc(); do n = 10*n + (c & 0xf), c = gc(); while (c >= '0'); return -n; } 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]); } pc('\n'); } //// ハッシュ関数 #define HASHSIZ 9999991 typedef struct { ll s; int id; } HASH; HASH hash[HASHSIZ+5], *hashend = hash + HASHSIZ; int lookup(ll s) { HASH *p = hash + (int)(s % HASHSIZ); while (p->s) { if (p->s == s) return p->id; if (++p == hashend) p = hash; } return -1; } void insert(ll s, int id) { HASH *p = hash + (int)(s % HASHSIZ); while (p->s) { if (p->s == s) return; if (++p == hashend) p = hash; } p->s = s, p->id = id; } //// 疑似乱数発生 unsigned xorshift() { static unsigned y = 2463534242; y = y ^ (y << 13), y = y ^ (y >> 17), y = y ^ (y << 5); return y; } ll phash[1000005]; int main() { int i, N, Q, x; unsigned r; ll s; N = in(), Q = in(); r = xorshift(); phash[0] = 1; for (i = 1; i <= N; i++) phash[i] = phash[i - 1] * r; s = 0; insert(s+1, 0); for (i = 1; i <= Q; i++) { x = gc(), gc(); if (x == '?') { x = lookup(s+1); out(x < 0? i: x); } else { int l = in(), r = in(), k = in(); s += (ll)(phash[r] - phash[l]) * k; insert(s+1, i); } } return 0; }