QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#483678#1819. Cleaning RobotElvinooWA 148ms62516kbC++172.0kb2024-07-19 01:54:272024-07-19 01:54:27

Judging History

你现在查看的是最新测评结果

  • [2024-07-19 01:54:27]
  • 评测
  • 测评结果:WA
  • 用时:148ms
  • 内存:62516kb
  • [2024-07-19 01:54:27]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int n, m, k;
vector<vector<int>> grid;
vector<vector<int>> maze;

bool bfs(int x, int y) {
  int dx[4] = {0, 0, 1, -1};
  int dy[4] = {1, -1, 0, 0};

  int vis = 1;
  vector<vector<bool>> visited(n + 1, vector<bool>(m + 1, false));
  queue<pair<int, int>> q;

  q.push({x, y});
  visited[x][y] = true;

  while (!q.empty()) {
    pair<int, int> curr = q.front();
    q.pop();

    for (int i = 0; i < 4; i++) {
      int nx = curr.first + dx[i];
      int ny = curr.second + dy[i];

      if (nx >= 1 && nx <= n && ny >= 1 && ny <= m && !visited[nx][ny] && maze[nx][ny] == 0) {
        visited[nx][ny] = true;
        q.push({nx, ny});
        vis++;
      }
    }
  }

  return vis == (n*m) - k;
}

bool valid(int x) {
  vector<vector<int>> clean(n + 5, vector<int>(m + 5, 0));
  for (int i = x; i <= n; i++) {
    for (int j = x; j <= m; j++) {
      int cnt = grid[i][j] - grid[i - x][j] - grid[i][j - x] + grid[i - x][j - x];
      if (cnt == 0) {
        clean[i - x + 1][j - x + 1]++;
        clean[i - x + 1][j + 1]--;
        clean[i + 1][j - x + 1]--;
        clean[i + 1][j + 1]++;
      }
    }
  }

  int vis = 0;
  for (int i = 1; i <= n; i++) {
    for (int j = 1; j <= m; j++) {
      clean[i][j] += clean[i - 1][j] + clean[i][j - 1] - clean[i - 1][j - 1];
      if (clean[i][j]) vis++;
    }
  }

  return vis == (n*m) - k;
}

int main() {
  cin >> n >> m >> k;

  grid.resize(n + 5, vector<int>(m + 5, 0));
  maze.resize(n + 5, vector<int>(m + 5, 0));

  for (int i = 0; i < k; i++) {
    int x, y;
    cin >> x >> y;

    grid[x][y] = 1;
    maze[x][y] = 1;
  }

  for (int i = 1; i <= n; i++) {
    for (int j = 1; j <= m; j++) {
      grid[i][j] += grid[i - 1][j] + grid[i][j - 1] - grid[i - 1][j - 1];
    }
  }
  
  

  int l = 1, r = min(n,m);
  while (l <= r) {
    int mid = (l + r) / 2;
    if (valid(mid)) {
      l = mid + 1;
    }
    else {
      r = mid - 1;
    }
  }

  cout << r << "\n";
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3576kb

input:

10 7 1
8 3

output:

2

result:

ok answer is '2'

Test #2:

score: 0
Accepted
time: 148ms
memory: 62516kb

input:

2236 2236 2214
28 1255
389 2175
730 592
1360 977
1225 752
1403 1798
1518 1381
147 745
659 249
951 1475
1826 1951
691 1033
81 1458
1487 1946
2106 1395
1995 629
470 891
1902 822
2210 2001
441 2130
1198 1539
2027 1101
215 1149
205 420
379 2104
308 1225
859 109
1417 2078
1764 376
1772 5
335 1113
917 118...

output:

1

result:

ok answer is '1'

Test #3:

score: 0
Accepted
time: 134ms
memory: 62496kb

input:

2236 2236 2143
228 686
129 801
1105 382
2196 1919
2082 777
1672 268
174 916
234 491
1235 274
1645 1849
1114 1173
1351 1677
1294 1365
1059 197
611 1715
1769 1395
885 1902
1190 1304
1039 779
610 124
881 662
22 1664
239 1283
2218 2031
169 1417
291 143
228 1837
1518 2013
747 359
1997 1030
73 153
614 488...

output:

3

result:

ok answer is '3'

Test #4:

score: 0
Accepted
time: 133ms
memory: 62416kb

input:

2236 2236 63774
369 1861
1156 2150
1895 160
546 1944
1688 645
49 1888
430 973
1602 30
1988 971
1120 1307
322 1524
1559 1070
558 1147
973 1965
572 923
370 646
1436 1982
132 681
1410 308
1812 982
2191 2112
1311 396
1067 1330
659 477
873 881
1766 508
2091 1875
895 716
2058 1237
1374 1005
2183 1514
227 ...

output:

8

result:

ok answer is '8'

Test #5:

score: -100
Wrong Answer
time: 137ms
memory: 62356kb

input:

2236 2236 27245
1371 170
575 488
1594 575
1537 77
491 1580
1761 764
783 1265
242 923
893 71
1455 671
114 1289
1901 1481
1962 1160
861 2198
1055 89
2019 1481
1012 1415
1023 92
421 2018
1788 2006
1559 263
1387 1496
1556 479
166 1085
1368 2156
2076 2156
1028 617
919 146
698 1544
1730 2111
871 1478
768 ...

output:

20

result:

wrong answer expected '16', found '20'