ICode9

精准搜索请尝试: 精确搜索
  • P1068 [NOIP2009 普及组] 分数线划定2022-01-29 15:00:32

    // Problem: P1068 [NOIP2009 普及组] 分数线划定 // Contest: Luogu // URL: https://www.luogu.com.cn/problem/P1068 // Memory Limit: 125 MB // Time Limit: 1000 ms // User: Pannnn #include <bits/stdc++.h> using namespace std; struct Candidate { int id;

  • 洛谷P1068 分数线划定2020-04-25 21:55:43

    题目描述 世博会志愿者的选拔工作正在 A 市如火如荼的进行。为了选拔最合适的人才,AA市对所有报名的选手进行了笔试,笔试分数达到面试分数线的选手方可进入面试。面试分数线根据计划录取人数的150\%150%划定,即如果计划录取mm名志愿者,则面试分数线为排名第m \times 150\%m×150%(向下

  • 洛谷——排序P1068分数线划定2019-11-24 15:01:47

    解法1: #include<bits/stdc++.h> using namespace std; int n,m,i,f,k[5001],s[5001],sub[5001]; bool cmp(int a,int b){ if(s[a] == s[b]){ return k[a]<k[b]; } return s[a] > s[b]; } int main(){ cin>>n>>m;

  • 洛谷P1068 分数线划定2019-10-19 19:56:41

    https://www.luogu.org/problem/P1068   #include<bits/stdc++.h>using namespace std;struct Can { int num; int score;} can[5001];bool compare1(Can a, Can b) { return a.score > b.score;}bool compare2(Can a, Can b) { return a.num < b.nu

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有