# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
164237 | aggu_01000101 | Ispit (COCI19_ispit) | C++14 | 805 ms | 6396 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cmath>
#include <vector>
#include <algorithm>
#include <queue>
#include <fstream>
#include <set>
#include <iomanip>
#include <unordered_map>
#define INF 1e16
#define int long long
#define N (int)1e5 + 5
using namespace std;
int32_t main(){
ios_base::sync_with_stdio(false);
cout.tie(0); cin.tie(0);
int n, m;
cin>>n>>m;
int mat[n][n];
int maxpref[n][n];
int maxsuff[n][n];
for(int i = 0;i<n;i++){
string s;
cin>>s;
for(int j =0 ;j<s.length();j++){
mat[i][j] = s[j]-'a';
}
}
for(int i = 0;i<n;i++){
for(int j = i+1;j<n;j++){
maxpref[i][j] = maxsuff[i][j] = 0;
int k = -1;
while(++k<n && mat[i][k]==mat[j][k]) ++maxpref[i][j];
k = n;
while(--k>=0 && mat[i][k]==mat[j][k]) ++maxsuff[i][j];
}
}
int cnt[26], cnt1[26];
bool possible = false;
for(int i = 0;i<n;i++){
for(int k = i+1;k<n;k++){
for(int i = 0;i<26;i++) cnt[i] = cnt1[i] = 0;
int samecount = 26;
for(int j = 0;j<m;j++){
if(mat[i][j] != mat[k][j] && cnt[mat[i][j]] == cnt1[mat[i][j]]) samecount--;
cnt[mat[i][j]]++;
if(mat[i][j] != mat[k][j] && cnt[mat[k][j]] == cnt1[mat[k][j]]) samecount--;
cnt1[mat[k][j]]++;
if(mat[i][j] != mat[k][j] && cnt[mat[i][j]] == cnt1[mat[i][j]]) samecount++;
if(mat[i][j] != mat[k][j] && cnt[mat[k][j]] == cnt1[mat[k][j]]) samecount++;
}
if(samecount==26 && maxsuff[i][k]>=(n-m)) possible = true;
for(int j = m;j<n;j++){
if(mat[i][j-m] != mat[k][j-m] && cnt[mat[i][j-m]] == cnt1[mat[i][j-m]]) samecount--;
cnt[mat[i][j-m]]--;
if(mat[i][j-m] != mat[k][j-m] && cnt1[mat[k][j-m]] == cnt[mat[k][j-m]]) samecount--;
cnt1[mat[k][j-m]]--;
if(mat[i][j] != mat[k][j] && cnt[mat[i][j]] == cnt1[mat[i][j]]) samecount--;
cnt[mat[i][j]]++;
if(mat[i][j] != mat[k][j] && cnt[mat[k][j]] == cnt1[mat[k][j]]) samecount--;
cnt1[mat[k][j]]++;
if(mat[i][j] != mat[k][j] && cnt[mat[i][j]] == cnt1[mat[i][j]]) samecount++;
if(mat[i][j] != mat[k][j] && cnt[mat[k][j]] == cnt1[mat[k][j]]) samecount++;
if(samecount==26 && maxsuff[i][k]>=(n-j-1) && maxpref[i][k]>=(j-m+1)) possible = true;
//cout<<i<<" "<<k<<" "<<samecount<<endl;
}
}
}
for(int i = 0;i<(n-1);i++){
for(int l = i+1;l<n;l++) {
if (maxpref[i][l]==n) possible = true;
}
}
if(possible) cout<<"DA"<<endl;
else cout<<"NE"<<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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |