首页 > TAG信息列表 > P1068

P1068 [NOIP2009 普及组] 分数线划定

// 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 分数线划定

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

洛谷——排序P1068分数线划定

解法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 分数线划定

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