QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#724328 | #9132. Painting Fences | SunsetGlow95 | WA | 2ms | 13880kb | C++14 | 1.3kb | 2024-11-08 12:05:43 | 2024-11-08 12:05:43 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int MXN = 1000005;
int N, M, hei[MXN], stk[MXN], top(-1), lb[MXN], rb[MXN], ans;
int lg2[MXN];
char str[MXN];
inline int func(int ls, int rs, int len) {
int fil(lg2[(ls + len - 1) / len + 1 + (rs + len - 1) / len]);
int extra(len * ((1 << fil) - 1 - (ls + len - 1) / len));
rs -= extra;
int nle(ls + len + extra);
return fil + lg2[(rs + nle - 1) / nle] + 1;
}
inline int calc(int ls, int rs, int len) {
return min(func(ls, rs, len), func(rs, ls, len));
}
int main() {
cin >> N >> M, ans = N * M;
lg2[0] = -1;
for (int i(2); i <= max(N, M); ++i) lg2[i] = lg2[i >> 1] + 1;
for (int i(0); i != N; ++i) {
cin >> str;
for (int j(0); j != M; ++j) {
hei[j] = (str[j] == '1' ? hei[j] + 1 : 0);
while (~top && hei[stk[top]] > hei[j]) rb[stk[top--]] = j;
lb[j] = (~top ? stk[top] : -1);
stk[++top] = j;
}
while (~top) rb[stk[top--]] = M;
for (int j(0); j != M; ++j)
if (hei[j]) {
int l1(rb[j] - lb[j] - 1), l2(hei[j]);
int ls1(lb[j] + 1), rs1(M - rb[j]);
int ls2(i + 1 - hei[j]), rs2(N - 1 - i);
ans = min(ans, calc(ls1, rs1, l1) + calc(ls2, rs2, l2));
}
}
cout << ans << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 11828kb
input:
4 4 1001 0100 0110 0110
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 0ms
memory: 11824kb
input:
3 3 000 111 111
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 13880kb
input:
4 3 011 011 001 110
output:
2
result:
ok 1 number(s): "2"
Test #4:
score: 0
Accepted
time: 2ms
memory: 11828kb
input:
4 4 0011 1111 1111 1111
output:
1
result:
ok 1 number(s): "1"
Test #5:
score: 0
Accepted
time: 0ms
memory: 11756kb
input:
4 4 0000 0010 0100 1000
output:
4
result:
ok 1 number(s): "4"
Test #6:
score: 0
Accepted
time: 2ms
memory: 11824kb
input:
2 5 00010 00111
output:
2
result:
ok 1 number(s): "2"
Test #7:
score: 0
Accepted
time: 2ms
memory: 11760kb
input:
5 5 11111 11111 11111 01111 11111
output:
1
result:
ok 1 number(s): "1"
Test #8:
score: 0
Accepted
time: 0ms
memory: 13748kb
input:
5 5 00101 00000 00001 00000 00100
output:
6
result:
ok 1 number(s): "6"
Test #9:
score: 0
Accepted
time: 0ms
memory: 13872kb
input:
5 5 00000 00000 00001 10000 00000
output:
6
result:
ok 1 number(s): "6"
Test #10:
score: 0
Accepted
time: 2ms
memory: 11760kb
input:
10 10 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111 1111111111
output:
0
result:
ok 1 number(s): "0"
Test #11:
score: 0
Accepted
time: 0ms
memory: 13876kb
input:
10 10 0001000000 0000000000 0000000000 0000000001 0000000001 0000000001 0000000000 0000000000 0000000000 0000000001
output:
6
result:
ok 1 number(s): "6"
Test #12:
score: 0
Accepted
time: 2ms
memory: 9848kb
input:
10 10 1111111110 1111111110 1111111110 1111111110 1111111110 1111100110 1111100010 1111101110 1111101100 1111100000
output:
1
result:
ok 1 number(s): "1"
Test #13:
score: 0
Accepted
time: 2ms
memory: 11884kb
input:
10 10 0000000000 0000001000 0000000000 0000000000 0000000000 0100000000 0000000000 0000000100 0000000000 0000000000
output:
8
result:
ok 1 number(s): "8"
Test #14:
score: 0
Accepted
time: 0ms
memory: 13768kb
input:
30 31 0000000000000000000000000000000 0000000000000000000000000000000 1111111111111110000000000000011 1111111111111110000000000000011 1111111111111110000000000000011 1111111111111111111111111111111 1111111111111111111111111111111 1111111111111111111111111111100 1111111111111111111111111111100 111111...
output:
3
result:
ok 1 number(s): "3"
Test #15:
score: -100
Wrong Answer
time: 0ms
memory: 13804kb
input:
30 31 0000000000000000000000000000000 0000000000000000000000000000000 0000000001000000000000000000000 0000000000000000000000100000000 0000000000000000000100000000000 0000000000000000001000000000000 0000000000000010000000000000000 0000000000000000000000000000000 0000000000000000000000000100110 000000...
output:
9
result:
wrong answer 1st numbers differ - expected: '10', found: '9'