結果
| 問題 |
No.440 2次元チワワ問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-10-29 00:35:20 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 1,840 ms / 5,000 ms |
| コード長 | 3,264 bytes |
| コンパイル時間 | 3,627 ms |
| コンパイル使用メモリ | 78,180 KB |
| 実行使用メモリ | 63,644 KB |
| 最終ジャッジ日時 | 2024-11-24 06:55:39 |
| 合計ジャッジ時間 | 25,168 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 26 |
ソースコード
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));
}
}