# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
773980 | gagik_2007 | 바이러스 (JOI19_virus) | C++17 | 1 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define ff first
#define ss second
ll ttt;
const ll INF=1e18;
const ll MOD=1e9+7;
const ll N=807;
ll n,m,k;
bool w[N][N];
bool e[N][N];
ll a[N][N];
string s;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
freopen("output.txt","w",stdout);
cin>>k>>n>>m;
cin>>s;
s+=s;
int cw=(s[0]=='W'),ce=(s[0]=='E');
int wc=cw,ec=ce;
for(int i=1;i<s.size();i++){
if(s[i]=='W'){
if(s[i]==s[i-1]){
cw++;
}
else{
ce=0;
cw=1;
}
wc=max(wc,cw);
}
else{
if(s[i]==s[i-1]){
ce++;
}
else{
cw=0;
ce=1;
}
ec=max(ec,ce);
}
}
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
cin>>a[i][j];
}
}
int cntt=MOD;
int cc=0;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
int cj=j+1;
int cnt=1;
while(cj<n&&a[i][cj]<=wc){
cnt++;
cj++;
}
cj=j-1;
while(cj>=0&&a[i][cj]<=ec){
cnt++;
cj--;
}
if(cnt<cntt){
cntt=cnt;
cc=1;
}
else if(cnt==cntt){
cc++;
}
}
}
cout<<cntt<<"\n"<<cc<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |