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>y;
};
int find(int key,int l,int r)
{
    int mid=(r+l)/2;
    if (l>r) return 0;
    if (key==a[mid])
    {
        if ((mid!=i)&&(mid!=j)&&(mid!=k)) f=1;
        return 0;
    }
    else if (key<a[mid])  find(key,mid+1,r);
    else  find(key,l,mid-1);
};
int main()
{
    while (scanf("%d",&n),n)
    {
        for (i=0; i<n; i++)
            scanf("%d",&a[i]);
        sort(a,a+n,comp);
        f=0;
        for (i=0; i<n; i++)
            for (j=0; j<n-1; j++)
                for (k=j+1; k<n; k++)
                {
                    ans=a[i];
                    if ((i!=j)&&(i!=k))
                        find(a[i]-a[j]-a[k],0,n-1);
                    if (f) goto there;
                }
there:
        ;
        if (f) printf("%d\n",ans);
        else printf("no solution\n");
    }
    return 0;
}
时间: 2024-10-24 21:59:58

uva 10125 - Sumsets(a+b+c=d)的相关文章

UVa 10125 - Sumsets

题目:给你n个数让你在里面找到会不相同的4个数a,b,c,d,使得 d = a + b + c. 分析:数学题,散列表.这是一个优化问题. 方法1:暴力法: 先排序,然后直接利用四层循环求解,找到解后直接跳出,也可以以利用二分代替最后一层循环: 这种方法,如果遇到特殊的数据就会TLE: 方法2:分步计算: 将等式转化为 d - a = b + c:我们分别求解两边的结果,然后找到结果相同的值即可: 查找方法,可以使用散列表储存b + c 或 a + b 的值,供另一边查找:也可存进数组,二分查找

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