結果

問題 No.440 2次元チワワ問題
ユーザー 37zigen37zigen
提出日時 2016-10-29 00:35:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,577 ms / 5,000 ms
コード長 3,264 bytes
コンパイル時間 3,590 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 78,764 KB
最終ジャッジ日時 2023-08-15 22:01:43
合計ジャッジ時間 22,841 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
55,836 KB
testcase_01 AC 111 ms
56,336 KB
testcase_02 AC 114 ms
55,900 KB
testcase_03 AC 113 ms
55,732 KB
testcase_04 AC 180 ms
58,520 KB
testcase_05 AC 118 ms
55,536 KB
testcase_06 AC 126 ms
55,736 KB
testcase_07 AC 343 ms
62,168 KB
testcase_08 AC 625 ms
63,744 KB
testcase_09 AC 746 ms
70,632 KB
testcase_10 AC 322 ms
62,544 KB
testcase_11 AC 516 ms
62,244 KB
testcase_12 AC 393 ms
62,948 KB
testcase_13 AC 856 ms
71,608 KB
testcase_14 AC 275 ms
63,216 KB
testcase_15 AC 802 ms
71,628 KB
testcase_16 AC 461 ms
61,124 KB
testcase_17 AC 1,165 ms
76,648 KB
testcase_18 AC 1,344 ms
73,912 KB
testcase_19 AC 1,266 ms
77,664 KB
testcase_20 AC 1,128 ms
76,604 KB
testcase_21 AC 1,560 ms
77,108 KB
testcase_22 AC 1,490 ms
77,460 KB
testcase_23 AC 1,570 ms
77,264 KB
testcase_24 AC 1,577 ms
78,764 KB
testcase_25 AC 912 ms
72,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Arrays;
import java.util.Scanner;


public class Q440 {
	public static void main(String[] args) {
		new Q440().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int W = sc.nextInt();
		char[][] map = new char[H][W];
		for (int i = 0; i < H; ++i) {
			map[i] = sc.next().toCharArray();
		}
		int Q = sc.nextInt();
		int[] a = new int[Q];
		int[] b = new int[Q];
		int[] c = new int[Q];
		int[] d = new int[Q];
		for (int i = 0; i < Q; ++i) {
			b[i] = sc.nextInt() - 1;
			a[i] = sc.nextInt() - 1;
			d[i] = sc.nextInt() - 1;
			c[i] = sc.nextInt() - 1;

		}
		long[] ans1 = solver(H, W,Q, map, a, b, c, d);
		
		char[][] aaa=new char[H][W];
		for(int i=0;i<H;++i){
			for(int j=0;j<W;++j){
				aaa[i][j]=map[i][W-j-1];
			}
		}
		char[][] map2=new char[H][W];
		for(int i=0;i<H;++i){
			for(int j=0;j<W;++j){
				map2[i][j]=aaa[H-i-1][j];
			}
		}
		
		int[] a2=new int[Q];
		int[] b2=new int[Q];
		int[] c2=new int[Q];
		int[] d2=new int[Q];
		for(int i=0;i<Q;++i){
			a2[i]=W-a[i]-1;
			c2[i]=W-c[i]-1;
			b2[i]=H-b[i]-1;
			d2[i]=H-d[i]-1;
		}
		long[] ans2=solver(H,W,Q,map2,c2,d2,a2,b2);
		for(int i=0;i<Q;++i){
			System.out.println(ans1[i]+ans2[i]);
		}
	}

	long[] solver(int H, int W, int Q,char[][] map, int[] a, int[] b, int[] c, int[] d) {
		int[][] WsV = new int[W][H];
		int[][] WsH = new int[H][W];
		long[][] CWsV = new long[W][H];
		long[][] CWsH = new long[H][W];
		long[][] CWWsV = new long[W][H];
		long[][] CWWsH = new long[H][W];
		for (int i = 0; i < W; ++i) {
			for (int j = 0; j < H; ++j) {
				WsV[i][j] = (j > 0 ? WsV[i][j - 1] : 0) + (map[j][i] == 'w' ? 1 : 0);
				if (j > 0)
					CWsV[i][j] = CWsV[i][j - 1] + (map[j][i] == 'w' ? (j - WsV[i][j - 1]) : 0);
				if (j > 1) {
					CWWsV[i][j] = CWWsV[i][j - 1];
					if (map[j][i] == 'w')
						CWWsV[i][j] += CWsV[i][j - 1];
				}
			}
		}

		for (int i = 0; i < H; ++i) {
			for (int j = 0; j < W; ++j) {
				WsH[i][j] = (j > 0 ? WsH[i][j - 1] : 0) + (map[i][j] == 'w' ? 1 : 0);// ok
				if (j > 0)
					CWsH[i][j] = CWsH[i][j - 1] + (map[i][j] == 'w' ? (j - WsH[i][j - 1]) : 0);// ok
				if (j > 1) {
					CWWsH[i][j] = CWWsH[i][j - 1];
					if (map[i][j] == 'w')
						CWWsH[i][j] += CWsH[i][j - 1];
				}
			}
		}

		long ans[] = new long[Q];
		for (int i = 0; i < Q; ++i) {
			for (int x = a[i]; x <= c[i]; ++x) {
				ans[i] += CWWsV[x][d[i]] - (b[i] > 0 ? CWWsV[x][b[i] - 1] : 0);
				ans[i] -= (b[i] - (b[i] > 0 ? WsV[x][b[i] - 1] : 0))
						* (WsV[x][d[i]] - (b[i] > 0 ? WsV[x][b[i] - 1] : 0))
						* (WsV[x][d[i]] - (b[i] > 0 ? WsV[x][b[i] - 1] : 0) - 1) / 2;// [c][ww]
				ans[i] -= (b[i] > 0 ? CWsV[x][b[i] - 1] : 0) * (WsV[x][d[i]] - (b[i] > 0 ? WsV[x][b[i] - 1] : 0));// [cw][w]
			}
			for (int y = b[i]; y <= d[i]; ++y) {
				ans[i] += CWWsH[y][c[i]] - (a[i] > 0 ? CWWsH[y][a[i] - 1] : 0);
				ans[i] -= (a[i] - (a[i] > 0 ? WsH[y][a[i] - 1] : 0))
						* (WsH[y][c[i]] - (a[i] > 0 ? WsH[y][a[i] - 1] : 0))
						* (WsH[y][c[i]] - (a[i] > 0 ? WsH[y][a[i] - 1] : 0) - 1) / 2;
				ans[i] -= (a[i] > 0 ? CWsH[y][a[i] - 1] : 0) * (WsH[y][c[i]] - (a[i] > 0 ? WsH[y][a[i] - 1] : 0));
			}
		}
		return ans;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0