結果
問題 | No.5002 stick xor |
ユーザー | tails |
提出日時 | 2018-05-26 00:27:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,000 bytes |
コンパイル時間 | 2,191 ms |
実行使用メモリ | 1,332 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-05-26 00:27:22 |
ジャッジサーバーID (参考情報) |
judge8 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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:20:5: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(a+y*64); ^ main.cpp:20:16: warning: ‘char* gets(char*)’ is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(a+y*64); ^ /tmp/cck2moYJ.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]; //int dbg_sc; 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; } } //dbg_sc+=bs; ry[li[i]]=by; rx[li[i]]=bx; } //printf("score=%d\n",dbg_sc); for(int i=0;i<k;++i){ printf("%d %d %d %d\n",rx[i]+1,ry[i]+1,rx[i]+la[i],ry[i]+1); } }