제출 #723714

#제출 시각아이디문제언어결과실행 시간메모리
723714dxz05Worm Worries (BOI18_worm)C++17
10 / 100
1261 ms9640 KiB
#include <stdio.h>
#include <stdlib.h>
#include <bits/stdc++.h>

using namespace std;

mt19937 rng(777);

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);
}

typedef long long ll;

int N, M, K;

map<ll, int> mp;
int ask(int x, int y, int z){
    if (x < 1 || x > N) return 0;
    if (y < 1 || y > M) return 0;
    if (z < 1 || z > K) return 0;

    ll val = x * 2'000'010'000'100LL + y * 1'000'002LL + z;
    if (mp.find(val) != mp.end()) return mp[val];
    return mp[val] = query(x, y, z);
}

void check(int x, int y, int z){
    if (ask(x, y, z) < ask(x - 1, y, z)) return;
    if (ask(x, y, z) < ask(x + 1, y, z)) return;
    if (ask(x, y, z) < ask(x, y - 1, z)) return;
    if (ask(x, y, z) < ask(x, y + 1, z)) return;
    if (ask(x, y, z) < ask(x, y, z - 1)) return;
    if (ask(x, y, z) < ask(x, y, z + 1)) return;
    guess(x, y, z);
}

int main() {
	int Q;
	(void)scanf("%d %d %d %d", &N, &M, &K, &Q);

    for (int y = 1; y <= M; y++) {
        for (int z = 1; z <= K; z++) {
            int l = 1, r = N;
            int ans = -1;

            while (l <= r) {
                int mid = l + rng() % (r - l + 1);
                int val1 = ask(mid, y, z), val2 = ask(mid + 1, y, z);

                if (val1 >= val2) {
                    ans = mid;
                    r = mid - 1;
                } else {
                    ans = mid + 1;
                    l = mid + 1;
                }
            }

            check(ans, y, z);
        }
    }

}

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

worm.cpp: In function 'int query(int, int, int)':
worm.cpp:13:13: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |  (void)scanf("%d", &ans);
      |        ~~~~~^~~~~~~~~~~~
worm.cpp: In function 'int main()':
worm.cpp:51:13: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   51 |  (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...