제출 #180593

#제출 시각아이디문제언어결과실행 시간메모리
180593gs13068Worm Worries (BOI18_worm)C++17
10 / 100
2 ms376 KiB
#include <stdio.h> #include <stdlib.h> int query(int x, int y, int z) { printf("? %d %d %d\n", x, y, z); fflush(stdout); int ans = -1; (void)scanf("%d", &ans); if (ans == -1) exit(0); return ans; } __attribute__((noreturn)) void guess(int x, int y, int z) { printf("! %d %d %d\n", x, y, z); exit(0); } int main() { int N, M, K, Q; (void)scanf("%d %d %d %d", &N, &M, &K, &Q); // TODO do something smart if (M == 1) { int L = 1, R = N; while (L < R) { if (R - L == 1) { if (query(L, 1, 1) > query(R, 1, 1)) R = L; else L = R; continue; } int M1 = (L + L + R) / 3, M2 = (L + R + R + 2) / 3; int q1 = query(M1, 1, 1), q2 = query(M2, 1, 1); if (q1 > q2) { if (q1 > query(M1 + 1, 1, 1)) R = M1; else { L = M1 + 1; R = M2 - 1; } } else { if (q2 > query(M2 - 1, 1, 1)) L = M2; else { L = M1 + 1; R = M2 - 1; } } } guess(L, 1, 1); } }

컴파일 시 표준 에러 (stderr) 메시지

worm.cpp: In function 'int query(int, int, int)':
worm.cpp:8:2: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  (void)scanf("%d", &ans);
  ^~~~~~~~~~~~~~~~~~~~~~~
worm.cpp: In function 'int main()':
worm.cpp:22:2: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  (void)scanf("%d %d %d %d", &N, &M, &K, &Q);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...