ZOJ 3879 Capture the Flag (浙江省省赛K题+模拟)

题目链接:ZOJ 3879 Capture the Flag

题意:给出n支队伍互相攻击服务器,有以下规则:

1.如果A队的服务器1被B队攻击成功,A队将失去n-1点分数,这n-1点分数会平分给成功攻击A队的服务器1的其他队伍。

eg:

共4个队

A B 1

C B 1

此时A队和C队都获得1.5(3/2)分,B队失去3分

2.如果一个队不能维护好他们的服务器,该队将失去n-1分,这n-1分平分给其他能维护好服务器的队伍。

eg:

1 1 0 1

0 1 1 1

针对服务器1(即第一行),只有C队没维护好,所以C队失去3分,A,B,D队各获得1(3/3)分。

针对服务器2(即第二行),只有A队没维护好,所以A队失去3分,C,B,D队各获得1(3/3)分。

输出c场比赛中每场比赛询问队伍的分数和排名。

注意:即使每个服务器被攻击多次,结算分数时只算一次。

AC代码:

#include <stdio.h>
#include <string.h>
#include <vector>
#include <algorithm>
using namespace std;
const double ep=1e-5;
bool vis[110][110][110];
bool cvis[110][110];

struct node{
	double p;
	int id,rank;
};
struct node pp[110];
double p[110];
int Rank[110];

bool cmp(node a,node b){
	return a.p>b.p;
}

bool cmp2(node a,node b){
	return a.id<b.id;
}
void getRank(double arr[],int n){
	int i;
	for(i=1;i<=n;i++){
		pp[i].id=i;
		pp[i].p=arr[i];
	}
	sort(pp+1,pp+n+1,cmp);
	int r=1;
	pp[1].rank=r;
	r++;
	for(i=2;i<=n;i++){
		if(pp[i-1].p-pp[i].p<=ep)
			pp[i].rank=pp[i-1].rank;
		else pp[i].rank=r;
		r++;
	}
	for(i=1;i<=n;i++)
		Rank[pp[i].id]=pp[i].rank;
}

int main()
{
	int t;
	int n,q,s,c;
	int a,i,j;
	int u,v,w,k;
	scanf("%d",&t);
	while(t--){
		scanf("%d %d %d %d",&n,&q,&s,&c);
		for(i=1;i<=n;i++){
			p[i]=s*1.0;
			Rank[i]=1;
		}
		while(c--){
			memset(vis,false,sizeof vis);
			memset(cvis,false,sizeof cvis);
			scanf("%d",&a);
			for(i=0;i<a;i++){
				scanf("%d %d %d",&u,&v,&w);
				cvis[v][w]=true;
				vis[u][v][w]=true;
			}
			int count=0;
			//被攻击的j队,k服务器
			for(j=1;j<=n;j++){
				for(k=1;k<=q;k++){
					count=0;
					for(i=1;i<=n;i++)
						if(vis[i][j][k]) count++;
					if(count==0) continue;
					for(i=1;i<=n;i++)
						if(vis[i][j][k]) p[i]+=(n-1)*1.0/count;
				}
				count=0;
				for(k=1;k<=q;k++)
					if(cvis[j][k]) p[j]-=(n-1);
			}
			int st;
			bool vvis[110];
			for(i=1;i<=q;i++){
				count=0;
				for(j=1;j<=n;j++){
					vvis[j]=false;
					scanf("%d",&st);
					if(!st) count++;// not work well
					else vvis[j]=true;
				}
				if(count==0) continue;
				for(j=1;j<=n;j++){
					if(!vvis[j]) p[j]-=(n-1);
					else p[j]+=(n-1)*count*1.0/(n-count);
				}
			}
			getRank(p,n);
			scanf("%d",&u);
			while(u--){
				scanf("%d",&v);
				printf("%.8lf %d\n",p[v],Rank[v]);
			}
		}
	}
	return 0;
}
/*

1
4 2 2500 5
0
1 1 1 1
1 1 1 1
4
1 2 3 4

2
1 2 1
3 2 1
1 1 1 1
1 1 1 1
4
1 2 3 4

1
1 2 2
1 1 1 1
1 1 1 0
4
1 2 3 4

0
0 0 0 0
0 0 0 0
4
1 2 3 4

0
1 1 1 1
1 1 1 1
2
1 4

2500.00000000 1
2500.00000000 1
2500.00000000 1
2500.00000000 1

2501.50000000 1
2497.00000000 4
2501.50000000 1
2500.00000000 3

2505.50000000 1
2495.00000000 4
2502.50000000 2
2497.00000000 3

2499.50000000 1
2489.00000000 4
2496.50000000 2
2491.00000000 3

2499.50000000 1
2491.00000000 3
*/
时间: 2024-10-07 17:08:46

ZOJ 3879 Capture the Flag (浙江省省赛K题+模拟)的相关文章

ZOJ 3879 Capture the Flag

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5527 题面: Capture the Flag Time Limit: 2 Seconds      Memory Limit: 65536 KB      Special Judge In computer security, Capture the Flag (CTF) is a computer security competition. CTF contes

ZOJ 3879 Capture the Flag 15年浙江省赛K题

每年省赛必有的一道模拟题,描述都是非常的长,题目都是蛮好写的... sigh... 比赛的时候没有写出这道题目 :( 题意:首先输入4个数,n,q,p,c代表有n个队伍,q个服务器,每支队伍的初始分数p, 还有c次操作对于每次操作,首先输入一个k,代表k次攻击每次攻击有三个数,a,b,c, 代表a通过c服务器成功的攻击了b对于每次成功的攻击,b会失去n-1分, 这n-1分会平分给通过同一服务器攻击b的几支队伍然后是q行,每行n个数, 分别代表1~n是否成功维护了,1为成功,0为不成功不成功的队伍

HDU 5122 K.Bro Sorting(2014北京区域赛现场赛K题 模拟)

这题定义了一种新的排序算法,就是把一串序列中的一个数,如果它右边的数比它小 则可以往右边移动,直到它右边的数字比它大为止. 易得,如果来模拟就是O(n^2)的效率,肯定不行 想了一想,这个问题可以被转化成 求这一串序列当中每个元素,它的右边是否存在小于它的数字,如果存在,则++ans 一开始没想到诶= = 不应该不应该 1 //#pragma comment(linker, "/STACK:16777216") //for c++ Compiler 2 #include <std

hdu5080:几何+polya计数(鞍山区域赛K题)

/* 鞍山区域赛的K题..当时比赛都没来得及看(反正看了也不会) 学了polya定理之后就赶紧跑来补这个题.. 由于几何比较烂写了又丑又长的代码,还debug了很久.. 比较感动的是竟然1Y了.. */ 题目大意: 给定一些点,某些点上有边,问用k种颜色染色的等价类有多少种 思路: 由于坐标是整数..只有可能旋转90,180,270才能得到置换 且图形必须为中心对称图形 先用几何方法找出对称中心 然后旋转,找是否出现置换... 由于点数只有50,几何预处理这一部分可以很暴力无脑的写..各种判断相

ZOJ 3814 Sawtooth Puzzle(牡丹江网络赛F题)

ZOJ 3814 Sawtooth Puzzle 题目链接 记录状态广搜,把9个拼图都压缩成一个状态,然后去搜索,就是模拟的过程比较麻烦 代码: #include <cstdio> #include <cstring> #include <queue> #include <algorithm> #include <set> using namespace std; typedef unsigned long long ll; int t; int

ZOJ 3812 We Need Medicine(牡丹江网络赛D题)

ZOJ 3812 We Need Medicine 题目链接 思路:dp[i][j][k]表示第i个物品,组成两个值为j和k的状态,这样会爆掉,所以状态需要转化一下 首先利用滚动数组,可以省去i这维,然后由于j最大记录到50,所以可以把状态表示成一个二进制数s,转化成dp[k] = s,表示组成k状态能组成s,这样空间复杂度就可以接受了,然后这题时限还可以,就这样去转移,然后记录下路径即可 代码: #include <cstdio> #include <cstring> #incl

zoj 3829 Known Notation(2014年牡丹江区域赛k题)

Known Notation Time Limit: 2 Seconds      Memory Limit: 131072 KB Do you know reverse Polish notation (RPN)? It is a known notation in the area of mathematics and computer science. It is also known as postfix notation since every operator in an expre

ACM学习历程——ZOJ 3829 Known Notation (2014牡丹江区域赛K题)(策略,栈)

Description Do you know reverse Polish notation (RPN)? It is a known notation in the area of mathematics and computer science. It is also known as postfix notation since every operator in an expression follows all of its operands. Bob is a student in

ACM学习历程——ZOJ 3822 Domination (2014牡丹江区域赛 D题)(概率,数学递推)

Description Edward is the headmaster of Marjar University. He is enthusiastic about chess and often plays chess with his friends. What's more, he bought a large decorative chessboard with N rows and M columns. Every day after work, Edward will place