CodeForces985G Team Players
2 seconds
256 megabytes
standard input
standard output
There are nn players numbered from 00 to n−1n−1 with ranks. The ii-th player has rank ii.
Players can form teams: the team should consist of three players and no pair of players in the team should have a conflict. The rank of the team is calculated using the following algorithm: let ii, jj, kk be the ranks of players in the team and i<j<ki<j<k, then the rank of the team is equal to A⋅i+B⋅j+C⋅kA⋅i+B⋅j+C⋅k.
You are given information about the pairs of players who have a conflict. Calculate the total sum of ranks over all possible valid teams modulo 264264.
The first line contains two space-separated integers nn and mm (3≤n≤2⋅1053≤n≤2⋅105, 0≤m≤2⋅1050≤m≤2⋅105) — the number of players and the number of conflicting pairs.
The second line contains three space-separated integers AA, BB and CC (1≤A,B,C≤1061≤A,B,C≤106) — coefficients for team rank calculation.
Each of the next mm lines contains two space-separated integers uiui and vivi (0≤ui,vi<n,ui≠vi0≤ui,vi<n,ui≠vi) — pair of conflicting players.
It's guaranteed that each unordered pair of players appears in the input file no more than once.
Print single integer — the total sum of ranks over all possible teams modulo 264264.
4 0
2 3 4
64
4 1
2 3 4
1 0
38
6 4
1 5 3
0 3
3 5
5 4
4 3
164
In the first example all 44 teams are valid, i.e. triples: {0, 1, 2}, {0, 1, 3}, {0, 2, 3} {1, 2, 3}.
In the second example teams are following: {0, 2, 3}, {1, 2, 3}.
In the third example teams are following: {0, 1, 2}, {0, 1, 4}, {0, 1, 5}, {0, 2, 4}, {0, 2, 5}, {1, 2, 3}, {1, 2, 4}, {1, 2, 5}.
AC代码为:
#include<bits/stdc++.h>
#define rep(i,x,y) for(register int i = x ;i <= y; ++ i)
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
template<typename T>inline void read(T&x)
{
char c;int sign = 1;x = 0;
do { c = getchar(); if(c == '-') sign = -1; }while(!isdigit(c));
do { x = x * 10 + c - '0'; c = getchar(); }while(isdigit(c));
x *= sign;
}
const int N = 2e5 + 20;
ull a,b,c,n,m;
ull u[N],v[N],ans;
ull s1[N],s2[N],s3[N];
vector<int> g[N],f[N];
int main()
{
read(n); read(m);
read(a); read(b); read(c);
rep(i,1,m)
{
read(u[i]); read(v[i]);
if(u[i] > v[i]) swap(u[i],v[i]);
g[u[i]].push_back(v[i]);
f[v[i]].push_back(u[i]);
}
rep(i,0,n-1)
{
ull x = n - i - 1;
ans += a * i * (x * (x - 1) / 2);
ans += b * i * i * x;
ans += c * i * ((ull)i * (i - 1) / 2);
}
rep(i,1,m)
{
s1[ 0 ] += 1;
s1[u[i]] -= 1;
s1[ u[i] ] += n - u[i] - 2;
s1[u[i]+1] -= n - u[i] - 2;
s2[u[i]+1] += 1;
s2[ v[i] ] -= 1;
s2[ u[i] ] += u[i];
s2[u[i]+1] -= u[i];
s2[ v[i] ] += n - v[i] - 1;
s2[v[i]+1] -= n - v[i] - 1;
s3[v[i]+1] += 1;
s3[ n ] -= 1;
s3[ v[i] ] += v[i] - 1;
s3[v[i]+1] -= v[i] - 1;
}
rep(i,1,n)
s1[i] += s1[i - 1],
s2[i] += s2[i - 1],
s3[i] += s3[i - 1];
rep(i,0,n - 1)
{
ans -= a * i * s1[i];
ans -= b * i * s2[i];
ans -= c * i * s3[i];
}
rep(i,0,n-1) sort(g[i].begin(),g[i].end());
rep(i,0,n-1) sort(f[i].begin(),f[i].end());
rep(i,0,n-1)
{
int sz = g[i].size();
rep(j,0,sz - 1)
{
int k = j + 1;
while(k < sz)
{
ans += a * i;
ans += b * g[i][j];
ans += c * g[i][k];
k ++ ;
}
int SZ = g[g[i][j]].size();
rep(q,0,SZ - 1)
{
ans += a * i;
ans += b * g[i][j];
ans += c * g[g[i][j]][q];
}
}
sz = f[i].size();
rep(j,0,sz - 1)
{
int k = j + 1;
while(k < sz)
{
ans += a * f[i][j];
ans += b * f[i][k];
ans += c * i;
++ k;
}
}
}
rep(i,0,n-1)
{
int sz = g[i].size();
rep(j,0,sz - 1)
{
int t = j + 1,k = 0;
int SZ = g[g[i][j]].size();
while(t < sz && k < SZ)
{
if(g[i][t] == g[g[i][j]][k])
{
ans -= a * i;
ans -= b * g[i][j];
ans -= c * g[i][t];
++ t; ++ k;
}
else if(g[i][t] < g[g[i][j]][k]) ++ t;
else ++ k;
}
}
}
cout << ans << endl;
return 0;
}
CodeForces985G Team Players的更多相关文章
- Codeforces 985G. Team Players
Description 有 \(n\) 个人 , \(m\) 对人有冲突 , 你要从这 \(n\) 个人中选出三个人成为一组 , 使得同一组的人不存在一对有冲突 题面 Solution 容斥 答案=总 ...
- BZOJ.5407.girls/CF985G. Team Players(三元环计数+容斥)
题面 传送门(bzoj) 传送门(CF) \(llx\)身边妹子成群,这天他需要从\(n\)个妹子中挑出\(3\)个出去浪,但是妹子之间会有冲突,表现为\(i,j\)之间连有一条边\((i,j)\), ...
- [CF985G]Team Players
题意:给出一个图,求$\sum\limits_{\substack{i\lt j\lt k\\\nexists(i,j),(j,k),(i,k)}}Ai+Bj+Ck$ 挺好的一道题==,就是稍微毒了点 ...
- Codeforces 985G - Team Players(三元环)
Codeforces 题目传送门 & 洛谷题目传送门 真·ycx 做啥题我就做啥题 考虑枚举 \(j\),我们预处理出 \(c1_i\) 表示与 \(i\) 相连的编号 \(<i\) 的 ...
- Ten Qualities of an Effective Team Player
If you were choosing team members for a business team in your organization, who would the best team ...
- Model--汇总
NSFileManager.NSURL.NSFileHandle.NSData.NSXMLParser.NSUserDefaults.NSKeyedArchiver.NSKeyedUnarchiver ...
- 《C#本质论》读书笔记(14)支持标准查询操作符的集合接口
14.2.集合初始化器 使用集合初始化器,程序员可以采用和数组相似的方式,在集合的实例化期间用一套初始的成员来构造这个集合. 如果没有集合初始化器,就只有在集合实例化后才能显示添加到集合中--例如 ...
- ng-repeat的group
http://blog.csdn.net/violet_day/article/details/17023219 一.obj包含 <!doctype html> <html ng- ...
- ios9基础知识(技能篇)
NSFileManager.NSURL.NSFileHandle.NSData.NSXMLParser.NSUserDefaults.NSKeyedArchiver.NSKeyedUnarchiver ...
随机推荐
- Ansible之常用模块(一)
ansible之所以功能强大,不是ansible本身,是因为它有众多的模块,前文我们介绍了ansible的基础介绍,系列命令的用法以及选项的说明,通过前文的学习我们知道了ansible是基于pytho ...
- 解决mybatis中 数据库column 和 类的属性名property 不一致的两种方式
解决方式way1:resultMap (1)studentMapper.xml <!-- 当数据库的字段名 和 类的属性名 不一致的时候的解决方式:2种 way1--> <selec ...
- java 深拷贝与浅拷贝
yls 2019年11月07日 拷贝分为引用拷贝和对象拷贝 深拷贝和浅拷贝都属于对象拷贝 浅拷贝:通过Object默认的clone方法实现 实现Cloneable接口 public class She ...
- java编程思想第四版第十四章 类型信息总结
1. Class 对象: 所有的类都是在对其第一次使用的时候,动态加载到JVM中的.当程序创建第一个对类的静态成员的引用时,就会加载这个类.这说明构造器也是类的静态方法.即使在构造器之前并没有stat ...
- pat 1132 Cut Integer(20 分)
1132 Cut Integer(20 分) Cutting an integer means to cut a K digits lone integer Z into two integers o ...
- suseoj 1212: 推箱子问题(bfs)
1212: 推箱子问题 时间限制: 1 Sec 内存限制: 128 MB提交: 60 解决: 13[提交][状态][讨论版][命题人:liyuansong] 题目描述 码头仓库是划分为n×m个格子 ...
- nyoj 79-拦截导弹 (动态规划)
79-拦截导弹 内存限制:64MB 时间限制:3000ms 特判: No 通过数:9 提交数:11 难度:3 题目描述: 某国为了防御敌国的导弹袭击,发展中一种导弹拦截系统.但是这种导弹拦截系统有一个 ...
- 分析facebook的AsyncDisplayKit框架中的Transaction的工作原理
在AsyncDisplayKit框架中有一个_ASAsyncTransaction模块,用于AsyncDiplayNode的异步事务,使用了dispatch_group实现. 主要目的是将operat ...
- Docker基础与实战,看这一篇就够了
docker 基础 什么是Docker Docker 使用 Google 公司推出的 Go 语言 进行开发实现,基于 Linux 内核的 cgroup,namespace,以及 AUFS 类的 Uni ...
- Excel的常用函数
1.查找重复内容=IF(COUNTIF(A:A,A2)>1,"重复","") 2.重复内容首次出现时不提示=IF(COUNTIF(A$2:A2,A2)&g ...