

Time Limit: 3 sec / Memory Limit: 256 MB
配点 : 点
問題文
縦 行、横 列のマス目からなる盤があります。最初、どのマス目も白く塗られています。
すぬけ君が、このうち マスを黒く塗りつぶしました。 回目 ( ) に塗りつぶしたのは、 上から 行目で左から 列目のマスでした。
すぬけ君がマス目を塗りつぶした後の盤の状態について、以下のものの個数を計算してください。
- 各整数 ( ) について、盤の中に完全に含まれるすべての 行 列の連続するマス目のうち、黒いマスがちょうど 個あるもの。
制約
入力
入力は以下の形式で標準入力から与えられる。
:
出力
出力は 行からなる。 行目 ( ) には、盤の中に完全に含まれるすべての 行 列の連続するマス目のうち、黒いマスがちょうど 個あるものの 総数を出力せよ。
入力例 1Copy
4 5 8 1 1 1 4 1 5 2 3 3 1 3 2 3 4 4 4
出力例 1Copy
0 0 0 2 4 0 0 0 0 0
この盤に含まれる の正方形は全部で 個ありますが、これらのうち 個の内部には黒いマスが 個、残りの 個の内部には黒いマスが 個含まれています。
入力例 2Copy
10 10 20 1 1 1 4 1 9 2 5 3 10 4 2 4 7 5 9 6 4 6 6 6 7 7 1 7 3 7 7 8 1 8 5 8 10 9 2 10 4 10 9
出力例 2Copy
4 26 22 10 2 0 0 0 0 0
入力例 3Copy
1000000000 1000000000 0
出力例 3Copy
999999996000000004 0 0 0 0 0 0 0 0 0
Score : points
Problem Statement
We have a grid with rows and columns. At first, all cells were painted white.
Snuke painted of these cells. The -th ( ) cell he painted is the cell at the -th row and -th column.
Compute the following:
- For each integer ( ), how many subrectangles of size of the grid contains exactly black cells, after Snuke painted cells?
Constraints
Input
The input is given from Standard Input in the following format:
:
Output
Print lines. The -th ( ) line should contain the number of the subrectangles of size of the grid that contains exactly black cells.
Sample Input 1Copy
4 5 8 1 1 1 4 1 5 2 3 3 1 3 2 3 4 4 4
Sample Output 1Copy
0 0 0 2 4 0 0 0 0 0
There are six subrectangles of size . Two of them contain three black cells each, and the remaining four contain four black cells each.
Sample Input 2Copy
10 10 20 1 1 1 4 1 9 2 5 3 10 4 2 4 7 5 9 6 4 6 6 6 7 7 1 7 3 7 7 8 1 8 5 8 10 9 2 10 4 10 9
Sample Output 2Copy
4 26 22 10 2 0 0 0 0 0
Sample Input 3Copy
1000000000 1000000000 0
Sample Output 3Copy
999999996000000004 0 0 0 0 0 0 0 0 0