ICPC Greater New York Region 2020 (模拟)

简介: ICPC Greater New York Region 2020 (模拟)

测评地址

题意:

给i c p c比赛的队伍排名。题数高的在前,相同题数用时少的在前,相同题数用时相同的比较a c最后一题的时间、倒数第二题的时间……如果比较完后还是相同,两者排名相同。

输出前n k名的信息。

思路:

存一个结构体里模拟即可,注意不足n k的情况

代码:

#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3,"Ofast","inline")
#include<iostream>
#include<cstdio>
#include<string>
#include<ctime>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<stack>
#include<climits>
#include<queue>
#include<map>
#include<set>
#include<sstream>
#include<cassert>
#include<bitset>
#include<list>
#include<unordered_map>
//#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll>PLL;
typedef pair<int, int>PII;
typedef pair<double, double>PDD;
#define I_int ll
inline ll read(){ll x = 0, f = 1;char ch = getchar();while(ch < '0' || ch > '9'){if(ch == '-')f = -1;ch = getchar();}while(ch >= '0' && ch <= '9'){x = x * 10 + ch - '0';ch = getchar();}return x * f;}
inline void write(ll x){if (x < 0) x = ~x + 1, putchar('-');if (x > 9) write(x / 10);putchar(x % 10 + '0');}
#define read read()
#define closeSync ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define multiCase int T;cin>>T;for(int t=1;t<=T;t++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i<(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define perr(i,a,b) for(int i=(a);i>(b);i--)
ll ksm(ll a, ll b,ll mod){ll res = 1;while(b){if(b&1)res=res*a%mod;a=a*a%mod;b>>=1;}return res;}
const int maxn=2e5+100,inf=0x3f3f3f3f;
struct node{
  int id,cnt,time;
  int cost[25];
  int sub[25];
}a[110];
bool vis[110][25];
int wa[110][25];
int main(){
#ifdef LOCAL
    freopen("in.in","r",stdin);
    freopen("out.out","w",stdout);
#endif
  int nt=read,np=read,ns=read,nk=read;
  rep(i,1,nt) a[i].id=i;
  while(ns--){
    int teamid=read,pid=read,subtime=read,op=read;
    if(vis[teamid][pid]){
      continue;
    }
    else{
      if(op==1){
        a[teamid].cnt++;
        int t=a[teamid].cnt;
        a[teamid].sub[t]=subtime;
        a[teamid].cost[t]= wa[teamid][pid]*20+subtime;//a[teamid].sub[t]-a[teamid].sub[t-1];
        vis[teamid][pid]=1;
        a[teamid].time+=wa[teamid][pid]*20+subtime;
      }
      else wa[teamid][pid]++;
    }
  }
  for(int i=1;i<=nt;i++){
    for(int j=i+1;j<=nt;j++){
      if(a[i].cnt<a[j].cnt) swap(a[i],a[j]);
      else if(a[i].cnt==a[j].cnt){
        if(a[i].time>a[j].time) swap(a[i],a[j]);
        else if(a[i].time==a[j].time){
          bool flag=1;
          for(int k=a[i].cnt;k>=1;k--){
            if(a[i].cost[k]<a[j].cost[k]){
              flag=0;break;
            }
            else if(a[i].cost[k]>a[j].cost[k]){
              flag=0;swap(a[i],a[j]);break;
            }
          }
          if(flag){
            if(a[i].id>a[j].id) swap(a[i],a[j]);
          }
        }
      }
    }
  }
  /*for(int j=1;j<=nt;j++){
    cout<<a[j].id<<" "<<a[j].cnt<<" "<<a[j].time<<endl;
    for(int i=1;i<=a[j].cnt;i++)
      cout<<a[j].cost[i]<<" ";
    puts("");
  }*/
  int now=1,cnt=0;
  while(cnt<=nk){
    int tmp=1;
    for(int i=now+1;i<=nt;i++){
      if(a[i].cnt==a[now].cnt&&a[i].time==a[now].time){
        bool flag=1;
        for(int j=a[i].cnt;j;j--)
          if(a[i].cost[j]!=a[now].cost[j]){
            flag=0;break;
          }
        if(!flag) break;
        tmp++;
      }
    }
    for(int i=1,j=now;i<=tmp;i++,j++){
      //cout<<cnt+1<<" "<<a[j].id<<" "<<a[j].cnt<<" "<<a[j].time<<endl;
      printf("%-4d%-4d%3d%5d\n",cnt+1,a[j].id,a[j].cnt,a[j].time);
    //  printf("%-4d%-4d%3d%5d\n",cnt+1,a[j].id,a[j],cnt,a[j].time);
    }
    now=now+tmp;
    cnt+=tmp;
  //  cout<<cnt<<endl;
    if(cnt>=nk) break;
  }
  return 0;
}


目录
相关文章
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
Shortest Path with Obstacle( CodeForces - 1547A )(模拟)
49 0
2022亚太建模B题Optimal Design of High-speed Train思路分析
2022亚太建模B题思路分析高速列车的优化设计 Optimal Design of High-speed Train
2022亚太建模B题Optimal Design of High-speed Train思路分析
【High 翻天】Higer-order Networks with Battiston Federico (8)
在本节将讨论一些观点和文化动力学模型,它们基于物理和数学文献启发、用简单规则来描述社会动态。
125 0
【High 翻天】Higer-order Networks with Battiston Federico (8)
【High 翻天】Higer-order Networks with Battiston Federico (7)
模拟人类行为的动态过程一直是许多研究的焦点,其中社会关系和交互通常被认为是一种潜在结构,是高阶方法的天然试验场。
【High 翻天】Higer-order Networks with Battiston Federico (7)
|
资源调度
【High 翻天】Higer-order Networks with Battiston Federico (5)
在给出建模之后,接下来讨论如何将传统意义下的扩散拓展到高阶系统。扩散是一个线性过程,但在许多不同的情况下都有强相关性。
【High 翻天】Higer-order Networks with Battiston Federico (5)
|
机器学习/深度学习
【High 翻天】Higer-order Networks with Battiston Federico (4)
模型的目的是再现、解释和预测系统的结构,最好用涉及系统两个或多个元素的交互来描述。为了考虑其输出的可变性,这些模型通常被指定为随机规则的集合,即随机过程。
【High 翻天】Higer-order Networks with Battiston Federico (4)
|
关系型数据库
【High 翻天】Higer-order Networks with Battiston Federico (3)
模型的目的是再现、解释和预测系统的结构,最好用涉及系统两个或多个元素的交互来描述。为了考虑其输出的可变性,这些模型通常被指定为随机规则的集合,即随机过程。
124 0
【High 翻天】Higer-order Networks with Battiston Federico (3)
|
人工智能 数据挖掘 Shell
【High 翻天】Higer-order Networks with Battiston Federico (2)
接上回说到了高阶的表示方法,接下来开始高阶系统的测量方法。
159 0
【High 翻天】Higer-order Networks with Battiston Federico (2)
【High 翻天】Higer-order Networks with Battiston Federico (1)
各种高维相关的东西火遍全球,一起High起来吧!
204 0
【High 翻天】Higer-order Networks with Battiston Federico (1)
【High 翻天】Higer-order Networks with Battiston Federico (6)
同步是两个或两个以上耦合动力系统的出现顺序,常见于物理、生物和社会系统中。在网络同步中,图的每个节点都是一个动态系统,它的动态通过成对的相互作用受到相邻节点的影响。当相互作用使所有或宏观部分的扰动达到相干状态时,同步就发生了。
117 0