Submission #180784

#TimeUsernameProblemLanguageResultExecution timeMemory
180784gs13068Worm Worries (BOI18_worm)C++17
Compilation error
0 ms0 KiB
#include <stdio.h>
#include <stdlib.h>
#include <map>

int __query(int x, int y, int z) {
	printf("? %d %d %d\n", x, y, z);
	fflush(stdout);
	int ans = -1;
	static int t;
  (void)scanf("%d", &ans);
	if (ans == -1) exit(0);
	return ans;
}

std::map<int, int> M;
int query(int x, int y, int z) {
  int t = x | y << 10 | z << 20;
  if (M.find(t) == M.end()) M[t] = __query(x, y, z);
  return M[t];
}

__attribute__((noreturn))
void guess(int x, int y, int z) {
	printf("! %d %d %d\n", x, y, z);
	exit(0);
}

const double p = 0.381966;

int px[6] = { 1, -1, 0, 0, 0, 0 };
int py[6] = { 0, 0, 1, -1, 0, 0 };
int pz[6] = { 0, 0, 0, 0, 1, -1 };

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;
    int T = L * p + R * (1 - p) + .5;
    while (L < R) {
      if (T + T == L + R) T = L * (1 - p) + R * p + .236;
      int T2 = L + R - T;
      if (T > T2) {
        int T3 = T;
        T = T2;
        T2 = T3;
      }
      if (query(T, 1, 1) > query(T2, 1, 1)) R = T2 - 1;
      else {
        L = T + 1;
        T = T2;
      }
    }
    guess(L, 1, 1);
  }
  if (Q == 3500) {
    int L = 1, R = N, D = 1, U = M;
    while (L < R || D < U) {
      if (R - L > U - D) {
        int M = L + R >> 1;
        int T = -1;
        for (int i = D; i <= U; i++) if (query(M, i, 1) > T) T = query(M, i, 1);
        for (int I = D; i <= U; i++) if (query(M + 1, i, 1) > T) break;
        if (i > U) R = M;
        else L = M + 1;
      }
      else {
        int M = D + U >> 1;
        int T = -1;
        for (int i = L; i <= R; i++) if (query(i, M, 1) > T) T = query(i, M, 1);
        for (int I = L; i <= R; i++) if (query(i, M + 1, 1) > T) break;
        if (i > R) U = M;
        else D = M + 1;
      }
    }
    guess(L, D, 1);
  }
  int i, x, y, z, w = -1;
  for (i = 0; i < Q / 5; i++) {
    int tx = rand() % N + 1;
    int ty = rand() % M + 1;
    int tz = rand() % K + 1;
    if (query(tx, ty, tz) > w) {
      w = query(tx, ty, tz);
      x = tx;
      y = ty;
      z = tz;
    }
  }
  do {
    for (i = 0; i < 6; i++) {
      int tx = x + px[i], ty = y + py[i], tz = z + pz[i];
      if (tx > 0 && tx <= N && ty > 0 && ty <= M && tz > 0 && tz <= K && query(tx, ty, tz) > query(x, y, z)) {
        x = tx;
        y = ty;
        z = tz;
        break;
      }
    }
  } while (i == 6);
  guess(x, y, z);
}

Compilation message (stderr)

worm.cpp: In function 'int __query(int, int, int)':
worm.cpp:9:13: warning: unused variable 't' [-Wunused-variable]
  static int t;
             ^
worm.cpp: In function 'int main()':
worm.cpp:62:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
         int M = L + R >> 1;
                 ~~^~~
worm.cpp:65:25: error: 'i' was not declared in this scope
         for (int I = D; i <= U; i++) if (query(M + 1, i, 1) > T) break;
                         ^
worm.cpp:65:18: warning: unused variable 'I' [-Wunused-variable]
         for (int I = D; i <= U; i++) if (query(M + 1, i, 1) > T) break;
                  ^
worm.cpp:66:13: error: 'i' was not declared in this scope
         if (i > U) R = M;
             ^
worm.cpp:70:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
         int M = D + U >> 1;
                 ~~^~~
worm.cpp:73:25: error: 'i' was not declared in this scope
         for (int I = L; i <= R; i++) if (query(i, M + 1, 1) > T) break;
                         ^
worm.cpp:73:18: warning: unused variable 'I' [-Wunused-variable]
         for (int I = L; i <= R; i++) if (query(i, M + 1, 1) > T) break;
                  ^
worm.cpp:74:13: error: 'i' was not declared in this scope
         if (i > R) U = M;
             ^
worm.cpp: In function 'int __query(int, int, int)':
worm.cpp:10:3: 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:36: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);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
worm.cpp: At global scope:
worm.cpp:9:13: warning: 't' defined but not used [-Wunused-variable]
  static int t;
             ^