博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3663 Costume Party
阅读量:2439 次
发布时间:2019-05-10

本文共 1300 字,大约阅读时间需要 4 分钟。

Costume Party
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 11793   Accepted: 4770

Description

It's Halloween! Farmer John is taking the cows to a costume party, but unfortunately he only has one costume. The costume fits precisely two cows with a length of (1 ≤ S ≤ 1,000,000). FJ hasN cows (2 ≤ N ≤ 20,000) conveniently numbered 1..N; cow i has length Li (1 ≤ Li ≤ 1,000,000). Two cows can fit into the costume if the sum of their lengths is no greater than the length of the costume. FJ wants to know how many pairs of two distinct cows will fit into the costume.

Input

* Line 1: Two space-separated integers: N and S

* Lines 2..N+1: Line i+1 contains a single integer: Li

Output

* Line 1: A single integer representing the number of pairs of cows FJ can choose. Note that the order of the two cows does not matter.

Sample Input

4 63521

Sample Output

4

题意:给n个数字,从中任意选2个数字不大于s的可能有多少种

解题思路:先将数字从小到大排序,然后从最后开始向前遍历,如果当前遍历的数(第i个)和前一个数之和小于等于s,那么一定有i*(i-1)/2对数存在,接下来我们从i向后遍历,找到一个数与第i个数之和小于等于s,全部找出来即可,复杂度为O(nlgn)+O(n)

参考代码:

#include 
#include
using namespace std;#define MAX 20000+2int main(){ int a[MAX],n,s; while (cin>>n>>s){ for (int i=0;i
>a[i]; } sort(a,a+n); int ans=0,k; for (k=n-1;k>0;k--){ if (a[k]+a[k-1]<=s) break; } ans+=k*(k-1)/2; for (;k

转载地址:http://hfbqb.baihongyu.com/

你可能感兴趣的文章
Oracle的表快照特征
查看>>
例解数据库设计三大范式
查看>>
通过9i的DBMS_METADATA包得到DLL语句
查看>>
AIX平台、HP-UNIX平台 主机日常性能数据采集
查看>>
rownum和rowid的区别
查看>>
oracle中4G以上内存的使用方法
查看>>
Linux安装指南专题 / Linux安装之Oracle篇
查看>>
需要oracle补丁的请进来,oracle 补丁下载新方法。
查看>>
Installing Oracle9i 32-bit on Red Hat 9, 8.0, 7
查看>>
ORACLE面试题 一
查看>>
使用Opatch工具应用过渡性Patch
查看>>
ORACLE数据类型
查看>>
删除笔记本电脑EISA隐藏分区
查看>>
p3095277_9204_LINUX.zip
查看>>
Redhat Linux版本说明
查看>>
I cannot start the X server 问题的解决
查看>>
DBCA 创建库时到100%时停止不动。
查看>>
面对一个全新的环境,作为一个Oracle DBA,首先应该了解什么?
查看>>
DBMS_JOB包的用法 一
查看>>
AT命令详解 一
查看>>