-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathB.java
More file actions
40 lines (37 loc) · 1.31 KB
/
B.java
File metadata and controls
40 lines (37 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import java.io.PrintStream;
import java.util.*;
/**
* APAC 2017 Round C Problem B: Safe Squares
* Check README.md for explanation.
*/
public class Main {
public String solve(Scanner scanner) {
int r=scanner.nextInt(), c=scanner.nextInt();
int[][] map=new int[r][c];
int k=scanner.nextInt();
while (k-->0)
map[scanner.nextInt()][scanner.nextInt()]=1;
int[][] edge=new int[r][c];
long ans=0;
for (int i=0;i<r;i++) {
for (int j=0;j<c;j++) {
if (map[i][j]==1) continue;
edge[i][j]=1+Math.min(i==0||j==0?0:edge[i-1][j-1],
Math.min(i==0?0:edge[i-1][j], j==0?0:edge[i][j-1]));
ans+=edge[i][j];
}
}
return String.valueOf(ans);
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
Scanner scanner=new Scanner(System.in);
int times=scanner.nextInt();
long start=System.currentTimeMillis();
for (int t=1;t<=times;t++) {
System.out.println(String.format("Case #%d: %s", t, new Main().solve(scanner)));
}
long end=System.currentTimeMillis();
System.err.println(String.format("Time used: %.3f", (end-start)/1000.));
}
}