CodeForces 609B The Best Gift
统计+枚举
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std; int a[]; int main()
{
int n,m;
scanf("%d%d",&n,&m);
memset(a,,sizeof a);
for(int i=;i<=n;i++)
{
int x;
scanf("%d",&x);
a[x]++;
}
int ans=;
for(int i=;i<=m;i++)
{
for(int j=i+;j<=m;j++)
{
ans=ans+a[i]*a[j];
}
}
printf("%d\n",ans);
return ;
}
CodeForces 609B The Best Gift的更多相关文章
- 【Codeforces 912E】Prime Gift
		Codeforces 912 E 题意:给\(n\leq16\)个素数\(p_1..p_n\),求第\(k\)个所有质因数都在\(n\)个数中的数. 思路:折半搜索...我原来胡搞毛搞怎么也搞不动\( ... 
- Codeforces 912 E.Prime Gift (折半枚举、二分)
		题目链接:Prime Gift 题意: 给出了n(1<=n<=16)个互不相同的质数pi(2<=pi<=100),现在要求第k大个约数全在所给质数集的数.(保证这个数不超过1e ... 
- codeforces 609B
		#include<bits/stdc++.h> using namespace std; ]; int main() { memset(num,,sizeof(num)); int n,m ... 
- Codeforces Educational Codeforces Round 3 B. The Best Gift 水题
		B. The Best Gift 题目连接: http://www.codeforces.com/contest/609/problem/B Description Emily's birthday ... 
- CodeForces 76A Gift - 最小生成树
		The kingdom of Olympia consists of N cities and M bidirectional roads. Each road connects exactly tw ... 
- 水题 Codeforces Round #286 (Div. 2) A Mr. Kitayuta's Gift
		题目传送门 /* 水题:vector容器实现插入操作,暴力进行判断是否为回文串 */ #include <cstdio> #include <iostream> #includ ... 
- Codeforces H. Prime Gift(折半枚举二分)
		题目描述: Prime Gift time limit per test 3.5 seconds memory limit per test 256 megabytes input standard ... 
- codeforces   505A. Mr. Kitayuta's Gift   解题报告
		题目链接:http://codeforces.com/problemset/problem/505/A 题目意思:给出一个长度不大于10的小写英文字符串 s,问是否能通过在字符串的某个位置插入一个字母 ... 
- CF# Educational Codeforces Round 3 B. The Best Gift
		B. The Best Gift time limit per test 2 seconds memory limit per test 256 megabytes input standard in ... 
随机推荐
- Inno Setup入门(二十二)——Inno Setup类参考(8)
			: Install Setup 2013-02-02 11:31 477人阅读 评论(0) 收藏 举报 列表框 列表框(ListBox)是Windows应用程序中重要的输入手段,其中包括多个选项用户可 ... 
- 大varchar,test,blob数据类型的优化
			set global innodb-file-format=Barracuda 其它优化,后续补充 
- (转)Tomcat内存设置详解
			Java内存溢出详解 一.常见的Java内存溢出有以下三种: 1. java.lang.OutOfMemoryError: Java heap space ----JVM Heap(堆)溢出JVM在启 ... 
- 编写Linux/Unix守护进程
			原文: http://www.cnblogs.com/haimingwey/archive/2012/04/25/2470190.html 守护进程在Linux/Unix系统中有着广泛的应用.有时,开 ... 
- 扫描局域网内的ip和主机名
			1. 目的 今天发现我配置的一台电脑ip被人占用了,所以准备写个程序扫描一下局域网内所有正在使用的ip和主机名 2. 实现--直接上代码 import time import threading im ... 
- Polycarp's problems
			Polycarp's problems time limit per test 2 seconds memory limit per test 256 megabytes input standard ... 
- Hibernate 系列教程15-一级缓存
			Product public class Product { private Long id; private String name; Product.hbm.xml <class name= ... 
- HDU 2018 undefined
			题目思路:完全背包,dp[i][j]代表,砍j只怪,用i点疲劳最多能获得的经验值. 和平常的完全背包不一样的是多了一个限制条件:最多只砍S只怪,所以我们应该多一重循环来q:for 1->S,代表 ... 
- 查找mysql数据库中所有包含特定名字的字段所在的表
			整个数据库查找 placement 字段: select * from INFORMATION_SCHEMA.columns where COLUMN_NAME Like '%placement%'; ... 
- 转:如何让LoadRunner实现多个场景运行?
			场景分析: 有3个不同的场景,分别为搜索,下载,上传,其中3个场景执行顺序为按照搜索->下载->上传流程操作:哪么如何让Loadrunner中如何实现多个场景运行: 方法1:利用Loadr ... 
