結果

問題 No.5002 stick xor
ユーザー ts_ts_
提出日時 2018-05-25 23:07:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 1,160 bytes
コンパイル時間 4,740 ms
実行使用メモリ 1,544 KB
スコア 40,509
最終ジャッジ日時 2018-05-25 23:07:31
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
1,540 KB
testcase_01 AC 50 ms
1,544 KB
testcase_02 AC 52 ms
1,540 KB
testcase_03 AC 50 ms
1,540 KB
testcase_04 AC 50 ms
1,544 KB
testcase_05 AC 50 ms
1,544 KB
testcase_06 AC 48 ms
1,540 KB
testcase_07 AC 52 ms
1,544 KB
testcase_08 AC 52 ms
1,540 KB
testcase_09 AC 52 ms
1,544 KB
testcase_10 AC 51 ms
1,540 KB
testcase_11 AC 52 ms
1,540 KB
testcase_12 AC 52 ms
1,540 KB
testcase_13 AC 51 ms
1,540 KB
testcase_14 AC 51 ms
1,540 KB
testcase_15 AC 50 ms
1,544 KB
testcase_16 AC 51 ms
1,544 KB
testcase_17 AC 51 ms
1,540 KB
testcase_18 AC 52 ms
1,544 KB
testcase_19 AC 59 ms
1,540 KB
testcase_20 AC 58 ms
1,540 KB
testcase_21 AC 77 ms
1,544 KB
testcase_22 AC 50 ms
1,540 KB
testcase_23 AC 50 ms
1,544 KB
testcase_24 AC 60 ms
1,544 KB
testcase_25 AC 57 ms
1,544 KB
testcase_26 AC 65 ms
1,540 KB
testcase_27 AC 64 ms
1,544 KB
testcase_28 AC 52 ms
1,540 KB
testcase_29 AC 52 ms
1,540 KB
testcase_30 AC 52 ms
1,540 KB
testcase_31 AC 49 ms
1,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n)   FOR(i,0,n)
#define pb emplace_back
typedef long long ll;
typedef pair<int,int> pint;

int n,k;
int L[501],g[61][61];
string s[61];
pair<pint,pint> calc(int length){
    int best=-1000100010;
    int lx,rx,ly,ry;
    rep(i,n)rep(j,n-length+1){
        int score=0;
        rep(k,length){
            if(g[i][j+k]==1) ++score;
            else --score;
        }
        if(best<score) lx=j,rx=j+length-1,ly=i,ry=i,best=score;
    }
    rep(i,n)rep(j,n-length+1){
        int score=0;
        rep(k,length){
            if(g[j+k][i]==1) ++score;
            else --score;
        }
        if(best<score) ly=j,ry=j+length-1,lx=i,rx=i,best=score;
    }
    FOR(i,ly,ry+1)FOR(j,lx,rx+1) g[i][j]^=1;
    return make_pair(pint(ly+1,lx+1),pint(ry+1,rx+1));
}
int main(){
    cin>>n>>k;
    rep(i,k) cin>>L[i];
    rep(i,n) cin>>s[i];
    rep(i,n)rep(j,n) g[i][j]=s[i][j]-'0';
    rep(i,k){
        pair<pint,pint> ret=calc(L[i]);
        cout<<ret.first.first<<" "<<ret.first.second<<" "<<ret.second.first<<" "<<ret.second.second<<endl;
    }
    return 0;
}
0