#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define rep(i,n) for(int i=0;i<n;i++)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define vec(...) vector<__VA_ARGS__>
#define _34raRxL ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef long double ld;
void print(){
cout<<"\n";
}
template<class te,class ...ti>
void print(const te&v, const ti&...nv) {
cout<<v;
if(sizeof...(nv)){
cout<<" ";
print(nv...);
}
}
#define yare {cout<<"DA\n"; exit(0);}
#define nare {cout<<"NE\n"; exit(0);}
using pii=pair<int,int>;
using vi=vector<int>;
using vll=vector<long long>;
signed main(){
_34raRxL;
int n,k;
cin>>n>>k;
assert(k<=n/2);
int h=n,w=n;
vec(vi) a(h,vi(w));
rep(i,h){
string s;
cin>>s;
rep(j,w){
a[i][j]=s[j]=='o';
}
}
vec(vi) tbl(2*n,vi(2*n));
rep(i,h){
rep(j,w){
int x=a[i][j];
// co = j + n ..
int ro=i,co=j+n;
tbl[ro][co]=tbl[co][ro]=x;
}
}
vi c(n);
{
rep(i,n){
rep(j,n){
c[i]+=(tbl[i][j+n]!=tbl[0][j+n]);
}
}
}
auto affine=[&](int i0,int i1,int add)->void{
rep(i,n){
if(i==i0 or i==i1) continue;
add+=min(c[i],n-c[i]);
}
if(add<=k){
yare;
}
};
affine(-1,-1,0);
rep(i,n){
affine(i,-1,max(c[i],n-c[i]));
}
rep(i,n){
rep(j,n){
if(i==j) continue;
affine(i,j,max(c[i],n-c[i])+max(c[j],n-c[j]));
}
}
nare;
//
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Correct |
3 ms |
3788 KB |
Output is correct |
3 |
Correct |
5 ms |
5452 KB |
Output is correct |
4 |
Correct |
15 ms |
16588 KB |
Output is correct |
5 |
Correct |
5 ms |
5580 KB |
Output is correct |
6 |
Correct |
2 ms |
2380 KB |
Output is correct |
7 |
Correct |
136 ms |
5196 KB |
Output is correct |
8 |
Correct |
858 ms |
17304 KB |
Output is correct |
9 |
Correct |
14 ms |
1332 KB |
Output is correct |
10 |
Correct |
854 ms |
17616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
11340 KB |
Output is correct |
2 |
Correct |
12 ms |
13856 KB |
Output is correct |
3 |
Correct |
8 ms |
9420 KB |
Output is correct |
4 |
Correct |
8 ms |
8268 KB |
Output is correct |
5 |
Correct |
14 ms |
16316 KB |
Output is correct |
6 |
Correct |
167 ms |
6040 KB |
Output is correct |
7 |
Correct |
424 ms |
11140 KB |
Output is correct |
8 |
Correct |
479 ms |
12136 KB |
Output is correct |
9 |
Correct |
69 ms |
3404 KB |
Output is correct |
10 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
15148 KB |
Output is correct |
2 |
Correct |
12 ms |
14680 KB |
Output is correct |
3 |
Correct |
7 ms |
8596 KB |
Output is correct |
4 |
Correct |
9 ms |
10956 KB |
Output is correct |
5 |
Correct |
10 ms |
11596 KB |
Output is correct |
6 |
Correct |
921 ms |
18720 KB |
Output is correct |
7 |
Correct |
114 ms |
4684 KB |
Output is correct |
8 |
Correct |
389 ms |
10572 KB |
Output is correct |
9 |
Correct |
445 ms |
11600 KB |
Output is correct |
10 |
Correct |
995 ms |
19652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |