結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
1,500 KB
testcase_01 AC 32 ms
1,504 KB
testcase_02 AC 30 ms
1,500 KB
testcase_03 AC 31 ms
1,504 KB
testcase_04 AC 29 ms
1,500 KB
testcase_05 AC 29 ms
1,504 KB
testcase_06 AC 29 ms
1,504 KB
testcase_07 AC 30 ms
1,504 KB
testcase_08 AC 33 ms
1,504 KB
testcase_09 AC 31 ms
1,504 KB
testcase_10 AC 30 ms
1,504 KB
testcase_11 AC 36 ms
1,500 KB
testcase_12 AC 36 ms
1,504 KB
testcase_13 AC 29 ms
1,500 KB
testcase_14 AC 30 ms
1,500 KB
testcase_15 AC 28 ms
1,500 KB
testcase_16 AC 29 ms
1,500 KB
testcase_17 AC 28 ms
1,496 KB
testcase_18 AC 28 ms
1,500 KB
testcase_19 AC 28 ms
1,504 KB
testcase_20 AC 30 ms
1,504 KB
testcase_21 AC 29 ms
1,500 KB
testcase_22 AC 27 ms
1,504 KB
testcase_23 AC 29 ms
1,500 KB
testcase_24 AC 29 ms
1,504 KB
testcase_25 AC 33 ms
1,504 KB
testcase_26 AC 47 ms
1,504 KB
testcase_27 AC 46 ms
1,500 KB
testcase_28 AC 31 ms
1,500 KB
testcase_29 AC 30 ms
1,500 KB
testcase_30 AC 29 ms
1,504 KB
testcase_31 AC 32 ms
1,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;

int N,K;
int D[61][61];
int x1,x2=1,y1,y2;

int check(int a, int b, int c, int d,int e,int f){
    int cnt = 0;
    if( a + b - 1 < N + 1) {
        for(int i=a; i<a+b; i++){
            if( D[c][i] == '1' ) cnt++;
            else cnt--;
        }
        if( cnt > d ){
            e = a;
            d = max( cnt, d);
            f = c;
        }
        check( a+1, b, c, d, e, f);
    } else {
        if( c >= N ) {
        x1 = e; x2 = e + b - 1; y1 = f; y2 = f;
        return b,e,f;
        }
        check( 1, b, c+1, d, e, f);
    }
}

int main (){
    cin >> N >> K;
    int L[K];
    int score = 0;
    for(int i=0; i<K; i++){
        cin >> L[i];
    }
    for(int i=1; i<=N; i++){
        for(int j=1; j<=N; j++){
            char a;
            cin >> a;
            D[i][j] = a;
            if( a == '0') score++;
        }
    }
    for(int i=0; i<K; i++){
        check(1,L[i],1,0,0, 0);
        cout << y1 << " " << x1 << " " << y2 << " " << x2 << endl;
    }
    return 0;
}
        
0