我是靠谱客的博主 温柔大神,最近开发中收集的这篇文章主要介绍A. Help Vasilisa the Wise 2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasilisa the Wise from the Kingdom of Far Far Away got a magic box with a secret as a present from her friend Hellawisa the Wise from the Kingdom of A Little Closer. However, Vasilisa the Wise does not know what the box's secret is, since she cannot open it again. She hopes that you will help her one more time with that.

The box's lock looks as follows: it contains 4 identical deepenings for gems as a 2 × 2 square, and some integer numbers are written at the lock's edge near the deepenings. The example of a lock is given on the picture below.

The box is accompanied with 9 gems. Their shapes match the deepenings' shapes and each gem contains one number from1 to 9 (each number is written on exactly one gem). The box will only open after it is decorated with gems correctly: that is, each deepening in the lock should be filled with exactly one gem. Also, the sums of numbers in the square's rows, columns and two diagonals of the square should match the numbers written at the lock's edge. For example, the above lock will open if we fill the deepenings with gems with numbers as is shown on the picture below.

Now Vasilisa the Wise wants to define, given the numbers on the box's lock, which gems she should put in the deepenings to open the box. Help Vasilisa to solve this challenging task.

Input

The input contains numbers written on the edges of the lock of the box. The first line contains space-separated integers r1and r2 that define the required sums of numbers in the rows of the square. The second line contains space-separated integers c1 and c2 that define the required sums of numbers in the columns of the square. The third line contains space-separated integers d1 and d2 that define the required sums of numbers on the main and on the side diagonals of the square (1 ≤ r1, r2, c1, c2, d1, d2 ≤ 20). Correspondence between the above 6 variables and places where they are written is shown on the picture below. For more clarifications please look at the second sample test that demonstrates the example given in the problem statement.

Output

Print the scheme of decorating the box with stones: two lines containing two space-separated integers from 1 to 9. The numbers should be pairwise different. If there is no solution for the given lock, then print the single number "-1" (without the quotes).

If there are several solutions, output any.

Sample test(s)
input
3 7
4 6
5 5
output
1 2
3 4
input
11 10
13 8
5 16
output
4 7
9 1
input
1 2
3 4
5 6
output
-1
input
10 10
10 10
10 10
output
-1
Note

Pay attention to the last test from the statement: it is impossible to open the box because for that Vasilisa the Wise would need 4 identical gems containing number "5". However, Vasilisa only has one gem with each number from 1 to 9.


解题说明:此题其实就是求一个2*2的矩阵,其中行,列,对角线之和分别等于输入的条件,用穷举法暴力即可

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <algorithm>
using namespace std;



int main()
{
	int r1,r2,d1,d2,c1,c2;
	int a,b,c,d;
	scanf("%d %d %d %d %d %d",&r1,&r2,&c1,&c2,&d1,&d2);
	for (a=1;a<=9;a++)
	{
		b=r1-a;
		c=c1-a;
		d=d1-a;
		if (b+d==c2&&c+d==r2&&b+c==d2&&a!=b&&a!=c&&a!=d&&b!=c&&b!=d&&c!=d&&b>=1&&b<=9&&c>=1&&c<=9&&d>=1&&d<=9)
		{
			printf("%d %dn%d %dn",a,b,c,d);
			return 0;
		}
	}
	printf("-1n");
    return 0;
}


最后

以上就是温柔大神为你收集整理的A. Help Vasilisa the Wise 2的全部内容,希望文章能够帮你解决A. Help Vasilisa the Wise 2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部