結果

問題 No.5002 stick xor
ユーザー tailstails
提出日時 2018-05-28 01:58:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 5 ms / 1,000 ms
コード長 1,878 bytes
コンパイル時間 1,336 ms
実行使用メモリ 1,384 KB
スコア 48,947
最終ジャッジ日時 2018-05-28 01:58:53
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
1,384 KB
testcase_01 AC 3 ms
1,380 KB
testcase_02 AC 3 ms
1,384 KB
testcase_03 AC 3 ms
1,380 KB
testcase_04 AC 3 ms
1,380 KB
testcase_05 AC 4 ms
1,380 KB
testcase_06 AC 3 ms
1,380 KB
testcase_07 AC 2 ms
1,380 KB
testcase_08 AC 3 ms
1,384 KB
testcase_09 AC 3 ms
1,380 KB
testcase_10 AC 4 ms
1,380 KB
testcase_11 AC 3 ms
1,384 KB
testcase_12 AC 3 ms
1,380 KB
testcase_13 AC 2 ms
1,384 KB
testcase_14 AC 3 ms
1,380 KB
testcase_15 AC 3 ms
1,380 KB
testcase_16 AC 3 ms
1,384 KB
testcase_17 AC 4 ms
1,380 KB
testcase_18 AC 3 ms
1,384 KB
testcase_19 AC 4 ms
1,380 KB
testcase_20 AC 3 ms
1,384 KB
testcase_21 AC 3 ms
1,380 KB
testcase_22 AC 4 ms
1,380 KB
testcase_23 AC 4 ms
1,384 KB
testcase_24 AC 4 ms
1,380 KB
testcase_25 AC 4 ms
1,380 KB
testcase_26 AC 4 ms
1,384 KB
testcase_27 AC 5 ms
1,384 KB
testcase_28 AC 4 ms
1,380 KB
testcase_29 AC 5 ms
1,380 KB
testcase_30 AC 5 ms
1,380 KB
testcase_31 AC 4 ms
1,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:5: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
     gets(a[y]+1);
     ^
main.cpp:18:16: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations]
     gets(a[y]+1);
                ^
/tmp/cc4oP8f5.o: In function `main':
main.cpp:(.text.startup+0x94): warning: the `gets' function is dangerous and should not be used.

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
using namespace std;

int n,k;
int lc[26],li[26][500];
int ra[500],rb[500],rc[500],rd[500];
char a[64][64];

main(){
  scanf("%d%d",&n,&k);
  for(int i=0;i<k;++i){
    int l;
    scanf("%d ",&l);
    li[l][lc[l]++]=i;
  }
  for(int y=1;y<=n;++y){
    gets(a[y]+1);
    for(int x=1;x<=n;++x){
      a[y][x]&=1;
    }
  }

  {
    bool m;
    do{
      m=false;
      for(int y=2;y<=n-1;++y){
        int bl=0,bx=0;
        int bv=450;
        for(int x=1;x<=n;++x){
          int v=0;
          for(int l=0;l<25&&x+l<=n;++l){
            v+= a[y][x+l]!=a[y-1][x+l] ? 100 : -101;
            v+= a[y][x+l]!=a[y+1][x+l] ? 100 : -99;
            if(bv<=v&&lc[l+1]){
              bv=v; bx=x; bl=l+1;
            }
          }
        }
        if(bx){
          int i=li[bl][--lc[bl]];
          ra[i]=y;
          rb[i]=bx;
          rc[i]=y;
          rd[i]=bx+bl-1;
          for(int l=0;l<bl;++l){
            a[y][bx+l]^=1;
          }
          m=true;
        }
      }
    }while(m);
  }
  
  for(int z=1;z<=n;++z){
    for(int x=1;x<=n;++x) {
      if(a[z][x]&&(z==n||a[z+1][x])){
        int bl=0,bv=0,v=0;
        for(int l=0;l<25&&z+l<=n;++l){
          v+=a[z+l][x]*5-1;
          int v1=v;
          if(a[z+l][x]&&!a[z+l+1][x]) v1+=200;
          if(!a[z+l][x]&&a[z+l+1][x]) v1+=100;
          if(bv<=v1&&lc[l+1]){
            bv=v1;
            bl=l+1;
          }
        }
        if(bl){
          int i=li[bl][--lc[bl]];
          ra[i]=z;
          rb[i]=x;
          rc[i]=z+bl-1;
          rd[i]=x;
          for(int l=0;l<bl;++l){
            a[z+l][x]^=1;
          }
        }
      }
    }
  }
  for(int l=1;l<=25;++l){
    while(lc[l]){
      int i=li[l][--lc[l]];
      ra[i]=1;
      rb[i]=1;
      rc[i]=1;
      rd[i]=l;
    }
  }
  for(int i=0;i<k;++i){
    printf("%d %d %d %d\n",ra[i],rb[i],rc[i],rd[i]);
  }
}
0