結果
問題 | No.5002 stick xor |
ユーザー | tails |
提出日時 | 2018-05-26 00:18:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 2,284 ms |
実行使用メモリ | 1,332 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-05-26 00:18:47 |
ジャッジサーバー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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:19:5: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(a+y*64); ^ main.cpp:19:16: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(a+y*64); ^ /tmp/ccdCvLSJ.o: In function `main': main.cpp:(.text.startup+0x144): warning: the `gets' function is dangerous and should not be used.
ソースコード
#include <cstdio> #include <cstdlib> #include <algorithm> using namespace std; int n,k; int la[500],li[500]; int ry[500],rx[500]; char a[64*60]; main(){ scanf("%d%d",&n,&k); for(int i=0;i<k;++i){ scanf("%d",&la[i]); li[i]=i; } sort(li,li+k,[](int a,int b){return la[b]<la[a];}); for(int y=0;y<n;++y){ gets(a+y*64); for(int x=0;x<n;++x){ a[y*64+x]&=1; } } for(int i=0;i<k;++i){ int l=la[li[i]]; int by,bx; int bs=-30; for(int y=0;y<n;++y){ int s=0; for(int x=0;x<l;++x){ s+=a[y*64+x]*2-1; a[y*64+x]^=1; } for(int x=l;x<n;++x){ if(bs<s){ bs=s; by=y; bx=x; } s+=a[y*64+x]*2-1; a[y*64+x]^=1; s+=a[y*64+(x-l)]*2-1; a[y*64+(x-l)]^=1; } } ry[li[i]]=by; rx[li[i]]=bx; } for(int i=0;i<k;++i){ printf("%d %d %d %d\n",rx[i],ry[i],rx[i]+la[i]-1,ry[i]); } }