首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【杭电oj】5101 - Select(STL & 二分)

【杭电oj】5101 - Select(STL & 二分)

作者头像
FishWang
发布2025-08-26 15:36:24
发布2025-08-26 15:36:24
19200
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

Select

Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1581 Accepted Submission(s): 441

Problem Description

One day, Dudu, the most clever boy, heard of ACM/ICPC, which is a very interesting game. He wants to take part in the game. But as we all know, you can't get good result without teammates. So, he needs to select two classmates as his teammates. In this game, the IQ is very important, if you have low IQ you will WanTuo. Dudu's IQ is a given number k. We use an integer v[i] to represent the IQ of the ith classmate. The sum of new two teammates' IQ must more than Dudu's IQ. For some reason, Dudu don't want the two teammates comes from the same class. Now, give you the status of classes, can you tell Dudu how many ways there are.

Input

There is a number T shows there are T test cases below. ( ) For each test case , the first line contains two integers, n and k, which means the number of class and the IQ of Dudu. n ( ), k( ). Then, there are n classes below, for each class, the first line contains an integer m, which means the number of the classmates in this class, and for next m lines, each line contains an integer v[i], which means there is a person whose iq is v[i] in this class. m( ), v[i]( )

Output

For each test case, output a single integer.

Sample Input

代码语言:javascript
代码运行次数:0
运行
复制
   1
3 1
1 2
1 2
2 1 1

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
   5

Source

BestCoder Round #17

第一次在每个班找人,再去其他班找人,最后得结果,然后就 TLE 了,虽然做了个剪枝。

后来的思路是:在全部人中找两两之和大于 k 的,然后减去一个班里满足条件的,最后除以 2 就行了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <algorithm>
using namespace std;
int iq[1011][111];
int stu[100000+11];
int main()
{
	int u;
	int n,k;
	int m;
	__int64 ans;
	int ant;
	scanf ("%d",&u);
	while (u--)
	{
		scanf ("%d %d",&n,&k);
		ans = m = 0;
		for (int i = 0 ; i < n ; i++)
		{
			scanf ("%d",&iq[i][0]);
			for (int j = 1 ; j <= iq[i][0] ; j++)
			{
				scanf ("%d",&iq[i][j]);
				stu[m++] = iq[i][j];
			}
			sort (iq[i] + 1 , iq[i] + iq[i][0] + 1); 
		}
		sort (stu , stu + m);
		for (int i = m - 1 ; i >= 0 ; i--)
		{
			ant = m - (upper_bound (stu , stu + m , k - stu[i]) - stu);
			if (ant)
				ans += ant;
			else
				break;
		}
		for (int i = 0 ; i < n ; i++)
		{
			for (int j = iq[i][0] ; j >= 1 ; j--)
			{
				ant = iq[i][0] - (upper_bound (iq[i] + 1 , iq[i] + 1 + iq[i][0] , k - iq[i][j]) - iq[i]) + 1;
				if (ant)
					ans -= ant;
				else
					break;
			}
		}
		ans >>= 1;		//计算的结果是答案的二倍 
		printf ("%I64d\n",ans);
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Select
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档