結果
問題 | No.5002 stick xor |
ユーザー | imazuki_taro |
提出日時 | 2018-05-31 00:52:15 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,642 bytes |
コンパイル時間 | 7,103 ms |
実行使用メモリ | 24,728 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-05-31 00:52:24 |
ジャッジサーバーID (参考情報) |
judge8 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args){ /*Preprocessing*/ Scanner sc = new Scanner(System.in); int N =sc.nextInt(); int K =sc.nextInt(); int[] len =new int[K]; int [][] grid =new int[N][N]; int initScore=0; for(int i=0; i<K;i++){ len[i] =sc.nextInt(); } for(int i=0;i<N;i++){ String tmp =sc.next(); for(int j=0;j<N;j++){ grid[i][j] =Integer.parseInt(String.valueOf(tmp.charAt(j))); } } int a,b,c,d; for(int i=0;i<K;i++){ int maxBlack_W=0; int maxY_W=0; int maxX_W=0; for (int j=0;j+len[i]<N;j++){ for(int start =j;start<j+len[i];start++){ int cnt=0; for(int l=start;l<start+len[i];l++){ if (grid[j][l] ==1){ cnt++; } } if(cnt>maxBlack_W){ maxBlack_W =cnt; maxY_W =j; maxX_W =start; } } } int maxBlack_H=0; int maxY_H=0; int maxX_H=0; for (int j=0;j+len[i]<N;j++){ for(int start =j;start<j+len[i];start++){ int cnt=0; for(int l=start;l<start+len[i];l++){ if (grid[l][j] ==1){ cnt++; } } if(cnt>maxBlack_H){ maxBlack_H =cnt; maxY_H =start; maxX_H =j; } } } if(maxBlack_H>maxBlack_W){ a=maxY_H+1; b=maxX_H+1; c=maxY_H+len[i]; d=maxX_H+1; for(int j=maxY_H;j<maxY_H+len[i];j++){ grid[maxY_H][j]=convert(grid[maxY_H][j]); } }else{ a=maxY_W+1; b=maxX_W+1; c=maxY_W+1; d=maxX_W+len[i]; for(int j=maxX_W;j<maxX_W+len[i];j++){ grid[j][maxX_W]=convert(grid[j][maxX_W]); } } System.out.println(a+" "+b+" "+c+ " "+ d); } } public static int convert(int input){ if(input ==1){ return 0; }else{ return 1; } } }