結果

問題 No.5002 stick xor
ユーザー motimoti
提出日時 2018-05-27 19:33:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,499 bytes
コンパイル時間 3,848 ms
実行使用メモリ 1,568 KB
スコア 0
最終ジャッジ日時 2018-05-27 19:34:07
ジャッジサーバーID
(参考情報)
judge6 /
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i,a,b) for(int i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

using namespace std;

int INF = 1<<29;

int a[61][61];
int l[26];
int lsum[66][66];
int N, K;

void calc_xlsum(int i) {
  for (int j = N - 1; j >= 0; j--) {
    lsum[i][j] = (a[i][j] ? 1 : -1) + (j < N - 1 ? lsum[i][j + 1] : 0);
  }
}

void solve() {
//  int raw = 0;
//  rep(i, N) rep(j, N) raw += !a[i][j];
  vector<tuple<int, int, int, int>> vec;
//  int ret = raw;
  rep(k, K) {
    int mx = -INF;
    int idx_i = -1, idx_j = -1;
    rep(i, N) rep(j, N - l[k] + 1) {
      int cand = lsum[i][j] - ( j + l[k] < N ? lsum[i][j + l[k]] : 0 );
      if (mx < cand) {
        mx = cand;
        idx_i = i, idx_j = j;
      }
    }
//    ret += mx;
    vec.emplace_back(idx_j + 1, idx_i + 1, idx_j + l[k] - 1 + 1, idx_i + 1);
    REP(j, idx_j, idx_j + l[k] + 1) {
      a[idx_i][j] ^= 1;
    }
    /*
    printf("-------------------\n");
    rep(i, N) {
      rep(j, N) {
        printf("%3d", a[i][j]);
      }
      printf("\n");
    }
    printf("===================\n");
    */
    calc_xlsum(idx_i);
  }
  for (auto e: vec) {
    int x,y,z,w; tie(x,y,z,w) = e;
    printf("%d %d %d %d\n", x, y, z, w);
  }
//  printf("ret = %d\n", ret);
//  printf("diff = %d\n", ret - raw);
}

int main() {
  cin >> N >> K;
  rep(i, K) {
    cin >> l[i];
  }
  sort(l, l + K, greater<int>());

  rep(i, N) {
    string s; cin >> s;
    rep(j, N) a[i][j] = s[j] - '0';
  }

  rep(i, N)
    calc_xlsum(i);

  solve();
}
0