Time Limit: 15000MS | Memory Limit: 228000K | |
Total Submissions: 18170 | Accepted: 5343 | |
Case Time Limit: 5000MS |
Description
Input
Output
Sample Input
6 -45 22 42 -16 -41 -27 56 30 -36 53 -37 77 -36 30 -75 -46 26 -38 -10 62 -32 -54 -6 45
Sample Output
5
Hint
Source
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #define N 5000 using namespace std; int a[N], b[N], c[N], d[N]; int ab[N*N]; int main() { #ifdef CDZSC freopen("i.txt", "r",stdin); #endif int n; while (~scanf("%d", &n)) { int q = 0; for (int i = 0; i <n; i++) scanf("%d%d%d%d",a + i, b + i, c + i, d + i); for (int i = 0; i < n; i++) { for (int j =0 ; j < n; j++) { ab[q++] = a[i] + b[j]; } } sort(ab, ab + n*n); long long ans = 0; int cd; for (int i = 0; i <n; i++) { for (int j = 0; j < n; j++) { cd = c[i] + d[j]; ans += upper_bound(ab, ab + n*n, -cd) - lower_bound(ab, ab +n*n, -cd); } } printf("%lld\n", ans); } return 0; }