BestCoder Round #61 (div.2) HDU5522 Numbers

本文探讨了排序算法和查找算法的优化策略,通过实例展示了如何提高算法效率,包括使用预排序、二分查找和哈希表等技术,旨在帮助开发者解决实际问题时提升程序性能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


Numbers

                                                Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/262144 K (Java/Others)
                                                                                 Total Submission(s): 95    Accepted Submission(s): 72


Problem Description
There are n numbers  A1,A2....An ,your task is to check whether there exists there different positive integers i, j, k ( 1i,j,kn ) such that  AiAj=Ak
 

Input
There are multiple test cases, no more than 1000 cases.
First line of each case contains a single integer n. (3n100) .
Next line contains n integers  A1,A2....An . (0Ai1000)
 

Output
For each case output "YES" in a single line if you find such i, j, k, otherwise output "NO".
 

Sample Input
  
3 3 1 2 3 1 0 2 4 1 1 0 2
 

Sample Output
  
YES NO YES
 

Source



出题人:先排序然后从大到小枚举i,把右边的数用一个数组标记其出现过,

                  再枚举左边的数判断其加上Ai是否出现过.



#include
  
   
#include
   
    
#include
    
     
#include
     
      
using namespace std;
int a[105];
int b[1001];
int main()
{
    int n,i,j,t,flag;
    while(~scanf("%d",&n))
    {
        flag=0;
        for(i=0; i<=1000; i++)
            b[i]=0;
        for(i=0; i
      
       =2; j--)
        {
            for(i=j-1; i>=1; i--)
            {
                int temp=a[j]-a[i];
                if(temp==a[i]&&b[temp]>=2)
                {
                    flag=1;
                    break;
                }
                if(temp!=a[i]&&b[temp]>=1)
                {
                    flag=1;
                    break;
                }
            }
        }
        if(flag) printf("YES\n");
        else printf("NO\n");
    }
    return 0;
}

      
     
    
   
  




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值