QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#33160 | #1819. Cleaning Robot | bulijiojiodibuliduo# | WA | 308ms | 62144kb | C++ | 1.7kb | 2022-05-29 02:21:42 | 2022-05-29 02:21:42 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for (int i=a;i<n;i++)
#define per(i,a,n) for (int i=n-1;i>=a;i--)
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define SZ(x) ((int)(x).size())
typedef vector<int> VI;
typedef basic_string<int> BI;
typedef long long ll;
typedef pair<int,int> PII;
typedef double db;
mt19937 mrand(random_device{}());
const ll mod=1000000007;
int rnd(int x) { return mrand() % x;}
ll powmod(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;}
// head
int n,m,k;
int main() {
scanf("%d%d%d",&n,&m,&k);
vector<vector<int>> ob(n+1,VI(m+1,0));
vector<vector<int>> ob2(n,VI(m,0));
rep(i,0,k) {
int u,v;
scanf("%d%d",&u,&v);
ob[u][v]=1;
ob2[u-1][v-1]=1;
}
rep(i,1,n+1) rep(j,1,m+1) ob[i][j]+=ob[i][j-1];
rep(i,1,n+1) rep(j,1,m+1) ob[i][j]+=ob[i-1][j];
int l=0,r=min(n,m)+1;
auto check=[&](int x) {
vector<vector<int>> mark(n+1,VI(m+1,0));
rep(i,0,n) rep(j,0,m) if (i+x<=n&&j+x<=m) {
int v=ob[i+x][j+x]-ob[i+x][j]-ob[i][j+x]+ob[i][j];
if (v==0) {
mark[i][j]++; mark[i+x][j]--; mark[i][j+x]--; mark[i+x][j+x]++;
}
}
rep(i,0,n) rep(j,1,m) mark[i][j]+=mark[i][j-1];
rep(i,1,n) rep(j,0,m) mark[i][j]+=mark[i-1][j];
//rep(i,0,n) rep(j,0,m) printf("%d %d %d\n",i,j,mark[i][j]);
rep(i,0,n) rep(j,0,m) if (ob2[i][j]==0&&mark[i][j]==0) return false;
return true;
};
while (l+1<r) {
int md=(l+r)>>1;
if (check(md)) l=md; else r=md;
}
if (l==0) l=-1;
printf("%d\n",l);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3804kb
input:
10 7 1 8 3
output:
2
result:
ok answer is '2'
Test #2:
score: 0
Accepted
time: 292ms
memory: 62144kb
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: 289ms
memory: 61940kb
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: 308ms
memory: 62036kb
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: 259ms
memory: 61988kb
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'