zoukankan      html  css  js  c++  java
  • HDU 2578 Dating with girls(1) [补7-26]

    Dating with girls(1)

    Time Limit: 6000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 3869    Accepted Submission(s): 1196


    Problem Description
    Everyone in the HDU knows that the number of boys is larger than the number of girls. But now, every boy wants to date with pretty girls. The girls like to date with the boys with higher IQ. In order to test the boys ' IQ, The girls make a problem, and the boys who can solve the problem
    correctly and cost less time can date with them.
    The problem is that : give you n positive integers and an integer k. You need to calculate how many different solutions the equation x + y = k has . x and y must be among the given n integers. Two solutions are different if x0 != x1 or y0 != y1.
    Now smart Acmers, solving the problem as soon as possible. So you can dating with pretty girls. How wonderful!
     
    Input
    The first line contain an integer T. Then T cases followed. Each case begins with two integers n(2 <= n <= 100000) , k(0 <= k < 2^31). And then the next line contain n integers.
     
    Output
    For each cases,output the numbers of solutions to the equation.
     
    Sample Input
    2 5 4 1 2 3 4 5 8 8 1 4 5 7 8 9 2 6
     
    Sample Output
    3 5
     
    Source
     
    Recommend
    lcy   |   We have carefully selected several similar problems for you:  2575 2579 2573 2576 2574
     
    要去除重复的元素和大于k的元素,因为大于k的元素是肯定组不成等于k的方程的,不能确定数据里是否有0,所以等于k的元素也保留着,每存一个数都hash一下,然后一遍for循环,看 hash[ k-a[i] ]是否为1,是的话cnt++;
     1 #include<queue>
     2 #include<math.h>
     3 #include<stdio.h>
     4 #include<string.h>
     5 #include<iostream>
     6 #include<algorithm>
     7 using namespace std;
     8 #define N 123456
     9 #define M 1234
    10 
    11 int n,k;
    12 int a[N];
    13 int main()
    14 {
    15     int t;cin>>t;
    16     while(t--)
    17     {
    18         scanf("%d%d",&n,&k);
    19         int ha[N]={0};
    20         int j=0,c;
    21         for(int i=0;i<n;i++)
    22         {
    23             scanf("%d",&c);
    24             if(c>k || ha[c])continue;
    25             a[j++]=c;
    26             ha[c]=1;
    27         }
    28         int cnt=0;
    29         for(int i=0;i<j;i++)
    30             if(ha[ k-a[i] ])
    31                 cnt++;
    32 
    33         cout<<cnt<<endl;
    34     }
    35     return 0;
    36 }
  • 相关阅读:
    一些比较实用的小函数
    开发KOL程序 (1)
    开发KOL程序2
    使用mask来制作图像透明
    用U盘方便快捷安装系统
    Windows记忆专家
    Delphi开发桌面图标列表查看程序
    js压缩上传图片,转载
    js操作二进制数据
    mui扫码横屏全屏
  • 原文地址:https://www.cnblogs.com/wmxl/p/4703263.html
Copyright © 2011-2022 走看看