CF243D.Cubes
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day Petya got a set of wooden cubes as a present from his mom. Petya immediately built a whole city from these cubes.
The base of the city is an n×n square, divided into unit squares. The square's sides are parallel to the coordinate axes, the square's opposite corners have coordinates (0,0) and (n,n) . On each of the unit squares Petya built a tower of wooden cubes. The side of a wooden cube also has a unit length.
After that Petya went an infinitely large distance away from his masterpiece and looked at it in the direction of vector v=(vx,vy,0) . Petya wonders, how many distinct cubes are visible from this position. Help him, find this number.
Each cube includes the border. We think that a cube is visible if there is a ray emanating from some point p , belonging to the cube, in the direction of vector −v , that doesn't contain any points, belonging to other cubes.
输入格式
The first line contains three integers n , vx and vy ( 1<=n<=103 , ∣vx∣,∣vy∣<=∣104∣ , ∣vx∣+∣vy∣>0 ).
Next n lines contain n integers each: the j -th integer in the i -th line aij (0<=aij<=109 , 1<=i,j<=n) represents the height of the cube tower that stands on the unit square with opposite corners at points (i−1,j−1) and (i,j) .
输出格式
Print a single integer — the number of visible cubes.
Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
输入输出样例
输入#1
5 -1 2 5 0 0 0 1 0 0 0 0 2 0 0 0 1 2 0 0 0 0 2 2 2 2 2 3
输出#1
20
输入#2
5 1 -2 5 0 0 0 1 0 0 0 0 2 0 0 0 1 2 0 0 0 0 2 2 2 2 2 3
输出#2
15