首页 > 其他 > 详细

2019HDU多校训练第四场G-Just an Old Puzzle

时间:2019-08-01 23:01:59      阅读:249      评论:0      收藏:0      [点我收藏+]

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\n");
21         else printf("No\n");
22     }
23     return 0;
24 }
View Code

 



2019HDU多校训练第四场G-Just an Old Puzzle

原文:https://www.cnblogs.com/CharlieWade/p/11285590.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!