日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

ZOJ 3879 Capture the Flag(模拟)

發(fā)布時(shí)間:2023/12/9 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ZOJ 3879 Capture the Flag(模拟) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

思路:惡心模擬...照著題目怎么說就怎么做就好了


#include<bits/stdc++.h> using namespace std; const int maxn = 100000; #define exp 1e-5 struct Node {int id,rank;double score; }nodes[105];int vis[105][105][105]; int visit[105]; bool cmp1(Node a,Node b) {return a.score > b.score; } bool cmp2(Node a,Node b) {return a.id<b.id; } int T; int main() {scanf("%d",&T);while (T--){// memset(vis,0,sizeof(vis));int n,q,p,c;scanf("%d%d%d%d",&n,&q,&p,&c);for (int i = 0;i<=n;i++){nodes[i].id=i;nodes[i].rank=1;nodes[i].score = p;}while (c--){int k;scanf("%d",&k);memset(vis,0,sizeof(vis));while (k--){int a,b,c;scanf("%d%d%d",&a,&b,&c);if (vis[a][b][c])continue; vis[a][b][c]=1;}for (int i = 1;i<=q;i++){for (int j = 1;j<=n;j++){int cnt = 0;for (int k = 1;k<=n;k++){if (vis[k][j][i])cnt++;}if (!cnt)continue;double sscore = 1.0*(n-1)/cnt;nodes[j].score-=(n-1);for (int k = 1;k<=n;k++){if (vis[k][j][i])nodes[k].score+=sscore;}}}for (int i = 1;i<=q;i++){memset(visit,0,sizeof(visit));int cnt = 0;for (int j = 1;j<=n;j++){int x;scanf("%d",&x);if (x){visit[j]=1;cnt++;}else{visit[j]=0;nodes[j].score-=(n-1);}}if (cnt==n)continue;double sscore = 1.0*(n-1)/cnt;sscore = sscore * (n-cnt);for (int j = 1;j<=n;j++){if (visit[j])nodes[j].score+=sscore;}}sort(nodes+1,nodes+n+1,cmp1);for (int i = 1;i<=n;i++) {if(i!=1){if(fabs(nodes[i].score-nodes[i-1].score)<exp)nodes[i].rank = nodes[i-1].rank;elsenodes[i].rank = i;}elsenodes[i].rank = i;}sort(nodes+1,nodes+n+1,cmp2);int kk;scanf("%d",&kk);while (kk--){int x;scanf("%d",&x);printf("%f %d\n",nodes[x].score,nodes[x].rank);}}} }

Description

In computer security, Capture the Flag (CTF) is a computer security competition. CTF contests are usually designed to serve as an educational exercise to give participants experience in securing a machine, as well as conducting and reacting to the sort of attacks found in the real world. Reverse-engineering, network sniffing, protocol analysis, system administration, programming, and cryptanalysis are all skills which have been required by prior CTF contests at DEF CON. There are two main styles of capture the flag competitions: attack/defense and jeopardy.

In an attack/defense style competition, each team is given a machine (or a small network) to defend on an isolated network. Teams are scored on both their success in defending their assigned machine and on their success in attacking other team's machines. Depending on the nature of the particular CTF game, teams may either be attempting to take an opponent's flag from their machine or teams may be attempting to plant their own flag on their opponent's machine.

Recently, an attack/defense style competition called?MCTF?held by Marjar University is coming, and there are?N?teams which participate in the competition. In the beginning, each team has?S?points as initial score; during the competition, there are some checkpoints which will renew scores for all teams. The rules of the competition are as follows:

  • If a team has been attacked for a service?P, they will lose?N - 1?points. The lost points will be split equally and be added to the team(s) which attacks successfully. For example, there are 4 teams and Team A has been attacked by Team B and Team C, so Team A will lose 3 points, while Team B and Team C each will get 1.5 points.
  • If a team cannot maintain their service well, they will lose?N - 1?points, which will be split equally too and be added to the team(s) which maintains the service well.

The score will be calculated at the checkpoints and then all attacks will be re-calculated. Edward is the organizer of the competition and he needs to write a program to display the scoreboard so the teams can see their scores instantly. But he doesn't know how to write. Please help him!

Input

There are multiple test cases. The first line of input contains an integer?T?indicating the number of test cases. For each test case:

The first line contains four integers?N?(2 <=?N?<= 100) - the number of teams,?Q?- the number of services (1 <=?Q?<= 10),?S?- the initial points (0 <=?S?<= 100000) and?C?- the number of checkpoints (1 <=?C?<= 100).

For each checkpoint, there are several parts:

  • The first line contains an integer?A?- the number of the successful attacks. Then?A?lines follow and each line contains a message: [The No. of the attacker] [The No. of the defender] [The No. of the service] For example, "1 2 3" means the 1st?team attacks the 2nd?team in service 3 successfully. The No. of teams and services are indexed from 1. You should notice that duplicate messages are invalid because of the rules. Just ignore them.
  • Then there are?Q?lines and each line contains?N?integers. The?jth?number of the?ith?line indicating the?jth?team's maintaining status of the?ith?service, where 1 means well and 0 means not well.
  • Finally there is an integer?U?(0 <=?U?<= 100), which describing the number of the queries. The following line contains?U?integers, which means Edward wants to know the score and the ranking of these teams.

Output

For each query?L, output the score and the ranking of the?Lth?team. The relative error or absolute error of the score should be less than 10-5. The team with higher score gets higher rank; the teams with the same scores should have the same rank. It is guaranteed that the scores of any two teams are either the same or with a difference greater than 10-5.

Sample Input

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

Sample Output

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

Hint

For C++ users, kindly use?scanf?to avoid TLE for huge inputs.



轉(zhuǎn)載于:https://www.cnblogs.com/q934098774/p/5388686.html

創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)

總結(jié)

以上是生活随笔為你收集整理的ZOJ 3879 Capture the Flag(模拟)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。