首页 > 代码库 > HDU 4708 Rotation Lock Puzzle(数学啊)
HDU 4708 Rotation Lock Puzzle(数学啊)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4708
Problem Description
Alice was felling into a cave. She found a strange door with a number square matrix. These numbers can be rotated around the center clockwise or counterclockwise. A fairy came and told her how to solve this puzzle lock: “When the sum of main diagonal and anti-diagonal is maximum, the door is open.”.
Here, main diagonal is the diagonal runs from the top left corner to the bottom right corner, and anti-diagonal runs from the top right to the bottom left corner. The size of square matrix is always odd.
This sample is a square matrix with 5*5. The numbers with vertical shadow can be rotated around center ‘3’, the numbers with horizontal shadow is another queue. Alice found that if she rotated vertical shadow number with one step, the sum of two diagonals is maximum value of 72 (the center number is counted only once).
Here, main diagonal is the diagonal runs from the top left corner to the bottom right corner, and anti-diagonal runs from the top right to the bottom left corner. The size of square matrix is always odd.
This sample is a square matrix with 5*5. The numbers with vertical shadow can be rotated around center ‘3’, the numbers with horizontal shadow is another queue. Alice found that if she rotated vertical shadow number with one step, the sum of two diagonals is maximum value of 72 (the center number is counted only once).
Input
Multi cases is included in the input file. The first line of each case is the size of matrix n, n is a odd number and 3<=n<=9.There are n lines followed, each line contain n integers. It is end of input when n is 0 .
Output
For each test case, output the maximum sum of two diagonals and minimum steps to reach this target in one line.
Sample Input
5 9 3 2 5 9 7 4 7 5 4 6 9 3 9 3 5 2 8 7 2 9 9 4 1 9 0
Sample Output
72 1
Source
2013 ACM/ICPC Asia Regional Online —— Warmup
代码如下:
#include<cstdio> int minn(int a,int b) { return a<b?a:b; } int main() { int n; int a[17][17]; while(~scanf("%d",&n) && n) { int sum = 0, pos = 0; int i, j; int mid = (n+1)/2; for(i = 1; i <= n; i++) { for(j = 1; j <= n; j++) { scanf("%d",&a[i][j]); if(i==mid && j==mid) { sum = a[i][j]; } } } int tsum = 0, tpos = 0; for(i = 1; i <= (n-1)/2; i++) //层数 { for(j = i; j <= n-i; j++) { int tt=(a[j][i]+a[n-j+1][n-i+1])+(a[n-i+1][j]+a[i][n-j+1]); //主副对角线相加 if(j==i || tsum<tt) { tsum = tt; tpos = minn(j-i,n-(i+j)+1);//逆时针,顺时针 } } pos+=tpos; sum+=tsum; } printf("%d %d\n",sum,pos); } return 0; }
HDU 4708 Rotation Lock Puzzle(数学啊)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。