zoukankan      html  css  js  c++  java
  • 2019HDU多校训练第四场G-Just an Old Puzzle

    Just an Old Puzzle

    时间限制: 1 Sec  内存限制: 128 MB

    题目描述

    You are given a 4 × 4 grid, which consists of 15 number cells and an empty cell.
    All numbers are unique and ranged from 1 to 15.
    In this board, the cells which are adjacent with the empty cell can move to the empty cell.
    Your task is to make the input grid to the target grid shown in the figure below.
    In the following example (sample input), you can get the target grid in two moves.

    输入

    The first line contains an integer T (1 <= T <= 10^5) denoting the number of test cases.
    Each test case consists of four lines each containing four space-separated integers, denoting the input grid. 0 indicates the empty cell.

    输出

    For each test case, you have to print the answer in one line.
    If you can’t get the target grid within 120 moves, then print 'No', else print 'Yes'.

    样例输入

    2
    1 2 3 4
    5 6 7 8
    9 10 0 12
    13 14 11 15
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 15 14 0
    

       样例输出

    Yes
    No

    代码
     1 #include <bits/stdc++.h>
     2 #define ll long long
     3 using namespace std;
     4 int arr[30];
     5 int main()
     6 {
     7     int t;
     8     scanf("%d",&t);
     9     while(t--)
    10     {
    11         for(int i=1;i<=4;i++) scanf("%d",&arr[i]);
    12         for(int i=8;i>=5;i--)scanf("%d",&arr[i]);
    13         for(int i=9;i<=12;i++)scanf("%d",&arr[i]);
    14         for(int i=16;i>=13;i--)scanf("%d",&arr[i]);
    15         int cnt=0;
    16         for(int i=16;i>=1;i--)
    17             for(int j=i-1;j>=1;j--)
    18                 if(arr[i]<arr[j]&&arr[i]!=0)
    19                     cnt++;
    20         if(cnt&1)printf("Yes
    ");
    21         else printf("No
    ");
    22     }
    23     return 0;
    24 }
    View Code


  • 相关阅读:
    背包问题_模板
    hihoCoder week14 无间道之并查集
    hihoCoder week13 最近公共祖先·一
    图片处理工具类 util
    算法导论 第二章 递归与分治
    hihoCoder week12 刷油漆
    hihoCoder week11 树中的最长路
    hihoCoder week10 后序遍历
    hihoCoder week8 状态压缩·一
    hihoCoder week7 完全背包
  • 原文地址:https://www.cnblogs.com/CharlieWade/p/11285590.html
Copyright © 2011-2022 走看看