UVa 10125 - Sumsets

题目:给你n个数让你在里面找到会不相同的4个数a,b,c,d,使得 d = a + b + c。

分析:数学题,散列表。这是一个优化问题。

方法1:暴力法;

先排序,然后直接利用四层循环求解,找到解后直接跳出,也可以以利用二分代替最后一层循环;

这种方法,如果遇到特殊的数据就会TLE;

方法2:分步计算;

将等式转化为 d - a = b + c;我们分别求解两边的结果,然后找到结果相同的值即可;

查找方法,可以使用散列表储存b + c 或 a + b 的值,供另一边查找;也可存进数组,二分查找。

说明:存储时记录计算的两个元素的下标,每个数字都不同;注意哈希值可能为负。

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <cmath>

using namespace std;

/* Hash define */
#define nodesize 500000
#define hashsize 1000  

typedef struct node
{
    int  value,l,r;
    node* next;
}list;
list  dict[nodesize+1];
list* head[hashsize+1];

class Hash
{
    private:
        int size;
    public:
        Hash(){size = 0;memset( head, 0, sizeof(head) );}
        int hash( int value ) {return abs(value)%hashsize;}
        void insert( int value, int i, int j ) {
            int id = hash(value);
            dict[size].value = value;
            dict[size].l = i;
            dict[size].r = j;
            dict[size].next = head[id];
            head[id] = &dict[size ++];
        }
        int find( int value, int i, int j ) {
            int id = hash(value);
            for ( list* p = head[id] ; p ; p = p->next )
                if ( value == p->value )
				if ( i != p->r && i != p->l && j < p->l )
					return true;
            return false;
        }
};
/* Hash end */  

int data[1002];

int main()
{
	int n;
	while ( cin >> n && n ) {
		for ( int i = 1 ; i <= n ; ++ i )
			cin >> data[i];
		sort( data+1, data+n+1 );

		Hash hash;
		for ( int i = 1 ; i <= n ; ++ i )
		for ( int j = i+1 ; j <= n ; ++ j )
			hash.insert( data[i]+data[j], i, j );
		int flag = 0;
		for ( int i = n ; i >= 1 ; -- i ) {
			for ( int j = 1 ; j <= n ; ++ j )
				if ( i != j && hash.find( data[i]-data[j], i, j ) ) {
					cout << data[i] << endl;
					flag = 1; break;
				}
			if ( flag ) break;
		}

		if ( !flag ) cout << "no solution" << endl;
	}
	return 0;
}

UVa 10125 - Sumsets

时间: 2024-10-11 01:13:15

UVa 10125 - Sumsets的相关文章

uva 10125 - Sumsets(a+b+c=d)

希望下次能马上想到 a+b .d-c 分开来算.然后保存其中一项的值,算出另一项来就查找该值是否存在. 这种方法明显比三重循环省时. 还有下面的方法: 三重循环穷举a,b,d;然后二分穷举c: #include<stdio.h> #include<algorithm> #include<string.h> using namespace std; int a[1010],i,j,k,ans,f,n; int comp(int x,int y) { return x>

uva 10125和集 sumset(set)

给定数字集合,找出最大的d,使得a+b+c=d且abc均在数字集合中,集合元素数量不超过1000 思路是把等式变换为d-c=a+b,这样只要枚举d,c,验证d-c是否在任意两元素之和所在的集合中,注意abcd不能重复,所以需要一些额外的判重条件 #include<cstdio> #include<cstring> #include<cmath> #include<cstdlib> #include<iostream> #include<al

【HASH】【UVA 10125】 Sumset

传送门 Description 给定一个整数集合S,求一个最大的d,满足a+b+c=d,其中a,b,c,d∈S Input 多组数据,每组数据包括: 第一行一个整数n,代表元素个数 下面n行每行一个整数,代表集合元素 输入结束的标志为n=0. Output 对于每组数据,输出: 一行,如果有解,输出一个整数,代表最大的d:否则输出no solution Sample Input 5 2 3 5 7 12 5 2 16 64 256 1024 0 Sample Output 12 no solut

UVA题目分类

题目 Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics 10300 - Ecological Premium 458 - The Decoder 494 - Kindergarten Counting Game 414 - Machined Surfaces 490 - Rotating Sentences 445 - Marvelous Mazes

UVA 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d

UVA 10341 Solve It

Problem F Solve It Input: standard input Output: standard output Time Limit: 1 second Memory Limit: 32 MB Solve the equation: p*e-x + q*sin(x) + r*cos(x) + s*tan(x) + t*x2 + u = 0 where 0 <= x <= 1. Input Input consists of multiple test cases and te

UVA 11014 - Make a Crystal(容斥原理)

UVA 11014 - Make a Crystal 题目链接 题意:给定一个NxNxN的正方体,求出最多能选几个整数点.使得随意两点PQ不会使PQO共线. 思路:利用容斥原理,设f(k)为点(x, y, z)三点都为k的倍数的点的个数(要扣掉一个原点O).那么全部点就是f(1),之后要去除掉共线的,就是扣掉f(2), f(3), f(5)..f(n).n为素数.由于这些素数中包括了合数的情况,而且这些点必定与f(1)除去这些点以外的点共线,所以扣掉.可是扣掉后会扣掉一些反复的.比方f(6)在f

[UVa] Palindromes(401)

UVA - 401 Palindromes Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDED

uva 401.Palindromes

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=342 题目意思:给出一段字符串(大写字母+数字组成).判断是否为回文串 or 镜像串 or 回文镜像串 or 什么都不是.每个字母的镜像表格如下 Character Reverse Character Reverse Character Reverse A A M M Y Y B