# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
917926 | SeDunion | Bomb (IZhO17_bomb) | C++17 | 473 ms | 77608 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
const int N = 2505;
int a[N][N], ans[N];
int L[N][N], R[N][N];
int main() {
int n, m;
cin >> n >> m;
for (int i = 1 ; i <= n ; ++ i) {
for (int j = 1 ; j <= m ; ++ j) {
char c;
cin >> c;
a[i][j] = (c - '0');
}
}
for (int i = 1 ; i <= n ; ++ i) {
ans[i] = m;
}
int lim = n;
for (int rep = 0 ; rep < 2 ; ++ rep) {
for (int i = 1 ; i <= n ; ++ i) {
for (int j = 1 ; j <= m ; ++ j) {
if (a[i][j]) L[i][j] = L[i][j - 1] + 1;
else L[i][j] = 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |