結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
1,336 KB
testcase_01 AC 20 ms
1,336 KB
testcase_02 AC 21 ms
1,332 KB
testcase_03 AC 21 ms
1,336 KB
testcase_04 AC 21 ms
1,340 KB
testcase_05 AC 21 ms
1,336 KB
testcase_06 AC 21 ms
1,336 KB
testcase_07 AC 21 ms
1,336 KB
testcase_08 AC 21 ms
1,336 KB
testcase_09 AC 22 ms
1,336 KB
testcase_10 AC 21 ms
1,336 KB
testcase_11 AC 21 ms
1,336 KB
testcase_12 AC 22 ms
1,340 KB
testcase_13 AC 21 ms
1,332 KB
testcase_14 AC 22 ms
1,340 KB
testcase_15 AC 21 ms
1,340 KB
testcase_16 AC 21 ms
1,332 KB
testcase_17 AC 21 ms
1,336 KB
testcase_18 AC 21 ms
1,336 KB
testcase_19 AC 22 ms
1,336 KB
testcase_20 AC 21 ms
1,336 KB
testcase_21 AC 21 ms
1,336 KB
testcase_22 AC 22 ms
1,336 KB
testcase_23 AC 21 ms
1,336 KB
testcase_24 AC 21 ms
1,336 KB
testcase_25 AC 20 ms
1,336 KB
testcase_26 AC 21 ms
1,336 KB
testcase_27 AC 22 ms
1,340 KB
testcase_28 AC 21 ms
1,340 KB
testcase_29 AC 21 ms
1,336 KB
testcase_30 AC 22 ms
1,340 KB
testcase_31 AC 21 ms
1,340 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]);
        }
    }
    int lput[k][4];
    int ncnt=25;
    int ldo=-1;
    for(int i=0;i<k;i++){
        while(true){
            ldo++;
            if(ldo==k){
                ldo=0;
                ncnt--;
            }
            if(l[ldo]==ncnt){
                break;
            }
        }
        int nl=l[ldo];
        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)];
        }
        lput[ldo][0]=maxx+1;
        lput[ldo][1]=maxy+1;
        if(maxtype==1){
            lput[ldo][2]=maxx+nl;
            lput[ldo][3]=maxy+1;
        }else{
            lput[ldo][2]=maxx+1;
            lput[ldo][3]=maxy+nl;
        }
    }
    for(int i=0;i<k;i++){
        printf("%d",lput[i][0]);
        printf("%s"," ");
        printf("%d",lput[i][1]);
        printf("%s"," ");
        printf("%d",lput[i][2]);
        printf("%s"," ");
        printf("%d",lput[i][3]);
        printf("%s","\n");
    }
}
0