码迷,mamicode.com
首页 > 其他好文 > 详细

poj2785 4 Values whose Sum is 0

时间:2017-10-02 18:52:22      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:class   ret   names   clu   +=   int   style   col   blog   

思路:
折半枚举,二分。

实现:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 using namespace std;
 5 int a[4][4005];
 6 int buf[16000005];
 7 int main()
 8 {
 9     int n;
10     cin >> n;
11     for (int i = 0; i < n; i++)
12     {
13         for (int j = 0; j < 4; j++)
14         {
15             cin >> a[j][i];
16         }
17     }
18     int cnt = 0;
19     for (int i = 0; i < n; i++)
20     {
21         for (int j = 0; j < n; j++)
22         {
23             buf[i * n + j] = a[0][i] + a[1][j];
24         }
25     }
26     sort(buf, buf + n * n);
27     for (int i = 0; i < n; i++)
28     {
29         for (int j = 0; j < n; j++)
30         {
31             int tmp = -a[2][i] - a[3][j];
32             if (binary_search(buf, buf + n * n, tmp))
33             {
34                 int l = lower_bound(buf, buf + n * n, tmp) - buf;
35                 int r = upper_bound(buf, buf + n * n, tmp) - buf;
36                 cnt += r - l;
37             }
38         }
39     }
40     cout << cnt << endl;
41     return 0;
42 }

 

poj2785 4 Values whose Sum is 0

标签:class   ret   names   clu   +=   int   style   col   blog   

原文地址:http://www.cnblogs.com/wangyiming/p/7620521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!