# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
833214 | vjudge1 | Bomb (IZhO17_bomb) | C++17 | 70 ms | 6500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int MX = 2e3 + 505;
char board[MX][MX];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,m;
cin >> n >> m;
for(int i = 1; i <= n ; i++)
{
for(int j = 1 ; j<= m ; j++)
{
//cout <<"ha" << endl;
cin >> board[i][j];
}
}
int ans = 0, mnAns = 1e9;
if( n == 1 || m == 1)
{
if(n == 1){
for(int i = 1 ;i <= m ; i++){
if(board[1][i] == '1')
{
ans++;
}else{
if(ans != 0){
mnAns = min(mnAns, ans);
}
ans = 0;
}
}
if(ans != 0){
mnAns = min(mnAns, ans);
}
}else{
for(int i = 1 ;i <= n ; i++){
if(board[i][1] == '1')
{
ans++;
}else{
if(ans != 0){
mnAns = min(mnAns, ans);
}
ans = 0;
}
}
if(ans != 0){
mnAns = min(mnAns, ans);
}
}
}
if(mnAns == 1e9){
cout << "0";
}else{
cout << mnAns;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |