結果

問題 No.5002 stick xor
ユーザー るさるさ
提出日時 2018-05-29 22:09:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 1,000 ms
コード長 1,746 bytes
コンパイル時間 1,655 ms
実行使用メモリ 1,332 KB
スコア 38,297
最終ジャッジ日時 2018-05-29 22:09:05
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
1,328 KB
testcase_01 AC 20 ms
1,332 KB
testcase_02 AC 21 ms
1,332 KB
testcase_03 AC 21 ms
1,332 KB
testcase_04 AC 21 ms
1,324 KB
testcase_05 AC 21 ms
1,328 KB
testcase_06 AC 20 ms
1,324 KB
testcase_07 AC 20 ms
1,332 KB
testcase_08 AC 20 ms
1,332 KB
testcase_09 AC 20 ms
1,324 KB
testcase_10 AC 20 ms
1,328 KB
testcase_11 AC 22 ms
1,328 KB
testcase_12 AC 21 ms
1,324 KB
testcase_13 AC 21 ms
1,328 KB
testcase_14 AC 21 ms
1,328 KB
testcase_15 AC 21 ms
1,332 KB
testcase_16 AC 20 ms
1,328 KB
testcase_17 AC 20 ms
1,328 KB
testcase_18 AC 21 ms
1,332 KB
testcase_19 AC 20 ms
1,328 KB
testcase_20 AC 20 ms
1,324 KB
testcase_21 AC 21 ms
1,328 KB
testcase_22 AC 20 ms
1,324 KB
testcase_23 AC 20 ms
1,328 KB
testcase_24 AC 21 ms
1,328 KB
testcase_25 AC 20 ms
1,324 KB
testcase_26 AC 21 ms
1,332 KB
testcase_27 AC 21 ms
1,332 KB
testcase_28 AC 22 ms
1,328 KB
testcase_29 AC 21 ms
1,328 KB
testcase_30 AC 21 ms
1,332 KB
testcase_31 AC 21 ms
1,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int n,k;
    scanf("%d", &n);
    scanf("%d", &k);
    int l[k];
    for(int i=0;i<k;i++){
        scanf("%d",&l[i]);
    }
    int f[n][n];
    char fc[n];
    char one[3]="1";
    for(int i=0;i<n;i++){
        scanf("%s",fc);
        for(int j=0;j<n;j++){
            f[i][j]=(fc[j]==one[0]);
        }
    }
    
    for(int i=0;i<k;i++){
        int nl=l[i];
        int maxb=0;
        int maxx=0;
        int maxy=0;
        int maxtype=0;
        int c=n-nl+1;
        bool isbreak=false;
        for(int x=0;x<c;x++){
            for(int y=0;y<c;y++){
                int h=0;
                int w=0;
                for(int z=0;z<nl;z++){
                    h+=f[x][y+z];
                    w+=f[x+z][y];
                }
                int m=(h<w)*w+(h>w)*h;
                if(maxb<m){
                    maxb=m;
                    maxx=x;
                    maxy=y;
                    maxtype=h<w;
                    isbreak=m>=nl;
                    if(isbreak){
                        break;
                    }
                }
            }
            if(isbreak){
                break;
            }
        }
        for(int z=0;z<nl;z++){
            f[maxx+maxtype*z][maxy+(maxtype-1)*(-z)]=not f[maxx+maxtype*z][maxy+(maxtype-1)*(-z)];
        }
        printf("%d",maxx+1);
        printf("%s"," ");
        printf("%d",maxy+1);
        printf("%s"," ");
        if(maxtype==1){
            printf("%d",maxx+nl);
            printf("%s"," ");
            printf("%d",maxy+1);
            printf("%s","\n");
        }else{
            printf("%d",maxx+1);
            printf("%s"," ");
            printf("%d",maxy+nl);
            printf("%s","\n");
        }
    }
}
0