zoukankan      html  css  js  c++  java
  • HDU 4772 Zhuge Liang's Password

    Zhuge Liang's Password

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 17    Accepted Submission(s): 14

    Problem Description
      In the ancient three kingdom period, Zhuge Liang was the most famous and smart military leader. His enemy was Sima Yi, the military leader of Kingdom Wei. Sima Yi always looked stupid when fighting against Zhuge Liang. But it was Sima Yi who laughed to the end.   Zhuge Liang had led his army across the mountain Qi to attack Kingdom Wei for six times, which all failed. Because of the long journey, the food supply was a big problem. Zhuge Liang invented a kind of bull-like or horse-like robot called "Wooden Bull & Floating Horse"(in abbreviation, WBFH) to carry food for the army. Every WBFH had a password lock. A WBFH would move if and only if the soldier entered the password. Zhuge Liang was always worrying about everything and always did trivial things by himself. Since Ma Su lost Jieting and was killed by him, he didn't trust anyone's IQ any more. He thought the soldiers might forget the password of WBFHs. So he made two password cards for each WBFH. If the soldier operating a WBFH forgot the password or got killed, the password still could be regained by those two password cards.   Once, Sima Yi defeated Zhuge Liang again, and got many WBFHs in the battle field. But he didn't know the passwords. Ma Su's son betrayed Zhuge Liang and came to Sima Yi. He told Sima Yi the way to figure out the password by two cards.He said to Sima Yi:   "A password card is a square grid consisting of N×N cells.In each cell,there is a number. Two password cards are of the same size. If you overlap them, you get two numbers in each cell. Those two numbers in a cell may be the same or not the same. You can turn a card by 0 degree, 90 degrees, 180 degrees, or 270 degrees, and then overlap it on another. But flipping is not allowed. The maximum amount of cells which contains two equal numbers after overlapping, is the password. Please note that the two cards must be totally overlapped. You can't only overlap a part of them."   Now you should find a way to figure out the password for each WBFH as quickly as possible.
     
    Input
      There are several test cases.   In each test case:   The first line contains a integer N, meaning that the password card is a N×N grid(0<N<=30).   Then a N×N matrix follows ,describing a password card. Each element is an integer in a cell.   Then another N×N matrix follows, describing another password card.   Those integers are all no less than 0 and less than 300.   The input ends with N = 0
     
    Output
      For each test case, print the password.
     
    Sample Input
    2
    1 2
    3 4
    5 6
    7 8
    2
    10 20
    30 13
    90 10
    13 21
    0
     
    Sample Output
    0
    2
     
    Source
     
    Recommend
    We have carefully selected several similar problems for you:  4780 4779 4778 4777 4776 
     
    思路:模拟
     
    代码:
     
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    int mapf[35][35];
    int mapt[35][35];
    int n;
    int the_flag;
    int the_max;
    int main()
    {
        while(scanf("%d",&n),n != 0)
        {
            memset(mapf,0,sizeof(mapf));
            memset(mapt,0,sizeof(mapt));
            for(int i = 1;i <= n;i ++)
                for(int j = 1;j <= n;j ++)
                   scanf("%d",&mapf[i][j]);
            for(int k = 1;k <= n;k ++)
                for(int m = 1;m <= n;m ++)
                   scanf("%d",&mapt[k][m]);
            the_max = 0;
            the_flag = 0;
            for(int i = 1;i <= n;i ++)
               for(int j = 1;j <= n;j ++)
                      {
                          if(mapf[i][j] == mapt[i][j])
                                  the_flag ++;
                      }
           if(the_flag > the_max)
               the_max = the_flag;
           the_flag = 0;
           for(int i = 1,m = n;i <= n && m >= 1;i ++,m --)
               for(int j = 1,k = 1;j <= n && k <= n;j ++,k ++)
                      {
                          if(mapf[i][j] == mapt[k][m])
                              the_flag ++;
                      }
          if(the_flag > the_max)
              the_max = the_flag;
          the_flag = 0;
          for(int i = 1,k = n;i <= n && k >= 1;i ++,k --)
               for(int j = 1,m = n;j <= n && m >= 1;j ++,m --)
                      {
                          if(mapf[i][j] == mapt[k][m])
                              the_flag ++;
                      }
           if(the_flag > the_max)
               the_max = the_flag;
           the_flag = 0;
          for(int i = 1,m = 1;i <= n && m <= n;i ++,m ++)
               for(int j = 1,k = n;j <= n && k >= 1;j ++,k --)
                      {
                          if(mapf[i][j] == mapt[k][m])
                              the_flag ++;
                      }
           if(the_flag > the_max)
               the_max = the_flag;
           printf("%d
    ",the_max);
        }
        return 0;
    }
  • 相关阅读:
    2010年8月18日周三_Migrating from 1.3 to 2.0_5
    2010年8月12日_周四_UserControlTask control
    2010年8月18日周三_insideTheAPI_overView_6.1
    一个Flex事件的简单的例子
    2010年8月13日_周五_PrintTask control
    如何发布一个GeometryService服务
    lua分割字符串
    lua字符串合并
    lua 类型转换
    linux 下 svn 冲突解决办法
  • 原文地址:https://www.cnblogs.com/GODLIKEING/p/3415886.html
Copyright © 2011-2022 走看看