結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | bal4u |
提出日時 | 2019-05-20 21:09:48 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 2,165 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 06:42:27 |
合計ジャッジ時間 | 885 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
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:15:24: note: in expansion of macro 'gc' 15 | 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:32:17: note: in expansion of macro 'pc' 32 | if (!n) pc('0'); | ^~
ソースコード
// yukicoder: 150 "良問"(良問とは言っていない // 2019.5.19 bal4u #include <stdio.h> #include <string.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); while ((c = gc()) >= '0'); return n; } int ins(char *s) { // 文字列の入力 スペース以下の文字で入力終了 char *p = s; do *s = gc(); while (*s++ > ' '); *--s = 0; return s - p; } 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 INF 0x7fffffff int seg[256]; int sz; void init(int n) { sz = 1; while (sz < n) sz <<= 1; memset(seg, INF, sizeof(seg)); } // k番目(0-index)の値を v に変更 void update(int k, int v) { int a, b; k += sz - 1; seg[k] = v; while (k > 0) { k = (k - 1) >> 1; a = seg[(k << 1) + 1]; b = seg[(k << 1) + 2]; seg[k] = (a <= b)? a: b; } } // 空間 [a, b) 内の最小値 int getMin(int a, int b, int k, int l, int r) { int left, right; if (r <= a || b <= l) return INF; if (a <= l && r <= b) return seg[k]; left = getMin(a, b, (k << 1) + 1, l, (l + r) >> 1); right = getMin(a, b, (k << 1) + 2, (l + r) >> 1, r); return left <= right ? left : right; } char S[105], g[105]; void good(int l, int r) { int i, j, k; static char *str = "good"; for (i = l; i <= r; i++) { k = j = 4; while (j--) if (S[i+j] == str[j]) k--; g[i] = k; } } void problem(int l, int r) { int i, j, k; static char *str = "problem"; for (i = l; i <= r; i++) { k = j = 7; while (j--) if (S[i+j] == str[j]) k--; update(i, k); } } int main() { int i, T, w, _w, a, ans; T = in(); while (T--) { w = ins(S), _w = w-11; init(w); // セグメント木の初期化 good(0, _w); problem(4, w-7); ans = 20; for (i = 0; i <= _w; i++) { a = g[i] + getMin(i+4, w-6, 0, 0, sz); if (a < ans) { ans = a; if (!ans) break; } } out(ans); } return 0; }