제출 #652781

#제출 시각아이디문제언어결과실행 시간메모리
652781chanhchuong123Mecho (IOI09_mecho)C++14
80 / 100
142 ms6872 KiB
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define task "C"
#define fi first
#define se second

const int dx[] = {-1, 0, 0, +1};
const int dy[] = {0, -1, +1, 0};
const int N = 802;
int n, S;
char a[N][N];

int bee[N][N];
int dis[N][N];
pair<int, int> s, t;
queue<pair<int, int>> q;

bool in(int x, int y) {
  return (1 <= x && x <= n) && (1 <= y && y <= n) && a[x][y] != 'T';
}

bool canMove(int mocho, int bee) {
  return mocho / S < bee;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);

  cin >> n >> S;
  for (int i = 1; i <= n; i++) {
    for (int j = 1; j <= n; j++)
      bee[i][j] = 1e9;
  }
  for (int i = 1; i <= n; i++) {
    for (int j = 1; j <= n; j++) {
      cin >> a[i][j];
      if (a[i][j] == 'M')
        s = make_pair(i, j);
      if (a[i][j] == 'D')
        t = make_pair(i, j);
      if (a[i][j] == 'H') {
        bee[i][j] = 0;
        q.push({i, j});
      }
    }
  }

  while (q.size()) {
    auto [u, v] = q.front();
    q.pop();
    for (int i = 0; i < 4; i++) {
      int x = u + dx[i], y = v + dy[i];
      if (in(x, y) && bee[x][y] == 1e9) {
        q.push({x, y});
        bee[x][y] = bee[u][v] + 1;
      }
    }
  }

  int l = -1, r = 1e9;
  while (r - l > 1) {
    int mid = l + r >> 1;

    for (int i = 1; i <= n; i++) {
      for (int j = 1; j <= n; j++)
        dis[i][j] = 1e9;
    }

    q.push(s); dis[s.fi][s.se] = 0;
    if (bee[s.fi][s.se] <= mid) q.pop();

    while (q.size()) {
      auto [u, v] = q.front();
      q.pop();
      for (int i = 0; i < 4; i++) {
        int x = u + dx[i], y = v + dy[i];
        if (in(x, y) && dis[x][y] == 1e9 &&
            canMove(dis[u][v] + 1, bee[u][v] - mid)) {
          dis[x][y] = dis[u][v] + 1;
          q.push({x, y});
        }
      }
    }

    bool ok = false;
    for (int i = 0; i < 4; i++) {
      int x = t.fi + dx[i], y = t.se + dy[i];
      if (in(x, y) && canMove(dis[x][y], bee[x][y] - mid)) ok = true;
    }
    if (ok) l = mid;
    else r = mid;
  }
  cout << l;
}

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

mecho.cpp: In function 'int main()':
mecho.cpp:51:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   51 |     auto [u, v] = q.front();
      |          ^
mecho.cpp:64:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   64 |     int mid = l + r >> 1;
      |               ~~^~~
mecho.cpp:75:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   75 |       auto [u, v] = q.front();
      |            ^
#Verdict Execution timeMemoryGrader output
Fetching results...