【链接】 我是链接,点我呀:)

【题意】

在这里输入题意

【题解】

训练编程的题。
原题中没有除0的数据,所以别担心你的代码是因为除0错了。
多半跟我一样。
也是因为没有+eps
就是比如你要算tot/4的值。
那么要输出tot/4+1e-6
不然会错。。。
浮点误差...

剩下的。其实很简答的。。

注意有并列第x的情况就好。

【代码】

#include <bits/stdc++.h>
using namespace std; const string subject[4]={"Chinese","Mathematics","English","Programming"}; struct abc{
string sid,cid,name;
int goal[4];int tot;
}; int ope;
vector<abc> v;
vector<abc> temp;
map<string,int> ranking; void output_message(){
cout<<"Welcome to Student Performance Management System (SPMS)."<<endl<<endl;
cout<<"1 - Add"<<endl;
cout<<"2 - Remove"<<endl;
cout<<"3 - Query"<<endl;
cout<<"4 - Show ranking"<<endl;
cout<<"5 - Show Statistics"<<endl;
cout<<"0 - Exit"<<endl<<endl;
} void tip(int idx){
if (idx==1) cout<<"Please enter the SID, CID, name and four scores. Enter 0 to finish."<<endl;
if (idx==2) cout<<"Please enter SID or name. Enter 0 to finish."<<endl;
if (idx==3) cout<<"Please enter SID or name. Enter 0 to finish."<<endl;
if (idx==4) cout<<"Showing the ranklist hurts students' self-esteem. Don't do that."<<endl;
if (idx==5) cout<<"Please enter class ID, 0 for the whole statistics."<<endl;
} bool found_student_by_sid(string sid){
for (abc temp:v) if (temp.sid==sid) return true;
return false;
} int _remove(string par,int p){
int cnt = 0;
vector<abc> newv;newv.clear();
for (int i = 0;i < (int) v.size();i++){
if ( (p==0 && v[i].sid == par) || (p==1 && v[i].name == par) ){
cnt++;
}else newv.push_back(v[i]);
}
v.resize((int)newv.size());
v = newv;
return cnt;
} bool cmp(abc a,abc b){
return a.tot>b.tot;
} int main(){
//freopen("/home/ccy/rush.txt","r",stdin);
//freopen("/home/ccy/rush_out.txt","w",stdout);
ios::sync_with_stdio(0),cin.tie(0);
while (1){
output_message();
cin >> ope;
if (ope==1){
while(1){
tip(1);
abc temp;
cin >> temp.sid;
if (temp.sid=="0") break;
temp.tot = 0;
cin >> temp.cid >> temp.name;
for (int i = 0;i < 4;i++){
cin >> temp.goal[i];
temp.tot+=temp.goal[i];
}
if (found_student_by_sid(temp.sid))
cout<<"Duplicated SID."<<endl;
else
v.push_back(temp);
}
}
if (ope==2){
while (1){
tip(2);
string s;
cin >> s;
if (s=="0") break;
int p = 0;
if (s[0]>='A' && s[0]<='Z') p = 1;
cout<<_remove(s,p)<<" student(s) removed."<<endl;
}
}
if (ope==3){
while (1){
tip(3);
string s;
cin >> s;
if (s=="0") break;
temp.resize((int)v.size());
for (int i = 0;i < (int)v.size();i++) temp[i] = v[i];
sort(temp.begin(),temp.end(),cmp);
for (int i = 0;i < (int)v.size();i++){
int cur = i+1,j = i;
ranking[temp[i].sid] = cur;
while (j+1<(int)v.size() && temp[j+1].tot==temp[i].tot) {
j++;
ranking[temp[j].sid] = cur;
}
i = j;
}
int p = 0;
if (s[0]>='A' && s[0]<='z') p = 1;
for (int i = 0;i < (int)v.size();i++){
if ( (p==0 && v[i].sid == s) || (p==1 && v[i].name==s) ){
cout<<ranking[v[i].sid]<<" ";
cout<<v[i].sid<<" "<<v[i].cid<<" "<<v[i].name<<" ";
for (int j = 0;j < 4;j++) cout<<v[i].goal[j]<<" ";
cout<<v[i].tot<<" ";
cout<<fixed<<setprecision(2)<<1.0*v[i].tot/4.0+(1e-5)<<endl;
}
}
}
}
if (ope==4) tip(4);
if (ope==5){
tip(5);
string s;
cin >> s;
for (int i = 0;i < 4;i++){
int cntb60 = 0,cntl60 = 0,tot =0,cnt = 0;
for (int j = 0;j < (int)v.size();j++){
if (v[j].cid==s || s=="0"){
if (v[j].goal[i]>=60){
cntb60++;
}else cntl60++;
tot+=v[j].goal[i];
cnt++;
}
}
cout<<subject[i]<<endl;
cout<<"Average Score: ";
cout<<fixed<<setprecision(2)<<1.0*tot/(1.0*cnt)+(1e-5)<<endl; cout<<"Number of passed students: "<<cntb60<<endl;
cout<<"Number of failed students: "<<cntl60<<endl;
cout<<endl;
}
cout<<"Overall:"<<endl;
int cnt[5]={0};
for (int i = 0;i < (int)v.size();i++)
if (v[i].cid==s || s=="0"){
int temp = 0;
for (int j = 0;j < 4;j++){
if (v[i].goal[j]>=60) temp++;
}
cnt[temp]++;
}
cout<<"Number of students who passed all subjects: "<<cnt[4]<<endl;
for (int i = 3;i >= 1;i--) cnt[i]+=cnt[i+1];
for (int i = 3;i >= 1;i--)
cout<<"Number of students who passed "<<i<<" or more subjects: "<<cnt[i]<<endl;
cout<<"Number of students who failed all subjects: "<<cnt[0]<<endl;
cout<<endl;
} if (ope==0){
break;
}
}
return 0;
}

【例题4-6 uva12412】A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)的更多相关文章

  1. UVA12412 师兄帮帮忙 A Typical Homework (a.k.a Shi Xiong Bang Bang Mang) 题解

    Content 自己去看题面去. Solution 算不上很繁琐的一道大模拟. 首先,既然是输出 \(0\) 才退出,那么在此之前程序应当会执行菜单 \(\Rightarrow\) 子操作 \(\Ri ...

  2. UVA 12412 A Typical Homework (a.k.a Shi Xiong Bang Bang Mang)

    题目链接:https://vjudge.net/problem/UVA-12412 题目大意 略. 分析 比较大规模的模拟,注意输入输出,浮点数精度,还有排名相同的输出顺序,还有一些边界情况处理. 代 ...

  3. A Typical Homework(学生信息管理系统)

    A Typical Homework(a.k.a Shi Xiong Bang Bang Mang) Hi, I am an undergraduate student in institute of ...

  4. 【例题 6-4 UVA - 11988】Broken Keyboard (a.k.a. Beiju Text)

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 会链表的插入操作的话.这个就不难了. 放置两个哨兵节点. 然后模拟插入一个节点的过程就好. 实时修改光标就好->即下一个插入的 ...

  5. Radio Basics for RFID

    Radio Basics for RFID The following is excerpted from Chapter 3: Radio Basics for UHF RFID from the ...

  6. [IR] Compression

    关系:Vocabulary vs. collection size Heaps’ law: M = kTbM is the size of the vocabulary, T is the numbe ...

  7. POJ 3261 可重叠的 k 次最长重复子串【后缀数组】

    这也是一道例题 给定一个字符串,求至少出现 k 次的最长重复子串,这 k 个子串可以重叠.算法分析:这题的做法和上一题差不多,也是先二分答案,然后将后缀分成若干组.不同的是,这里要判断的是有没有一个组 ...

  8. CDQ分治与整体二分学习笔记

     CDQ分治部分 CDQ分治是用分治的方法解决一系列类似偏序问题的分治方法,一般可以用KD-tree.树套树或权值线段树代替. 三维偏序,是一种类似LIS的东西,但是LIS的关键字只有两个,数组下标和 ...

  9. 小结:A* & IDA* & 迭代深搜

    概要: 在dfs中,如果答案的深度很小但是却很宽,而且bfs还不一定好做的情况下,我们就综合bfs的优点,结合dfs的思想,进行有限制的dfs.在这里A*.IDA*和迭代深搜都是对dfs的优化,因此放 ...

随机推荐

  1. windows下solr7.9+tomcat7环境搭建

    1.下载solr.tomcat(能够不用下载.由于solr有jetty支持) 2.solr部署到tomcat上    首先,把解压包下的solr-4.9.0\example\solr-webapp中的 ...

  2. linux openssl 编程 Client端

    相关配置等请參看上一篇关于server端文章:http://blog.csdn.net/pingd/article/details/47805349 1.Client端源代码: openssl_cli ...

  3. luogu1522 牛的旅行

    题目大意 每个牧场里的某些坐标位置有牧区,牧区间有一个个路径(长度为位置间的直线距离).一个连通块内两个节点间的最短路径长度最大值为它的直径.请编程找出一条连接两个不同牧场的路径,使得连上这条路径后, ...

  4. Linux I2C驱动分析(三)----i2c_dev驱动和应用层分析 【转】

    本文转载自:http://blog.chinaunix.net/uid-21558711-id-3959287.html 分类: LINUX 原文地址:Linux I2C驱动分析(三)----i2c_ ...

  5. bzoj5085: 最大

    暴力是4方的,开始我只3方(扫描的时候更新当前最大) 二分+暴力可以做到m^2logMAX 二分答案,暴力枚举可行的两个位置形成一段,对于段,最多只会有m^2种情况. #include<cstd ...

  6. 音频格式opus

    人耳能听到自然界的声音是20HZ-20KHZ,一般高保真音质采样率只有达到最高采样率的2倍以上即可,平时电话采样率8KHZ,CD音质的采样率44.1KHZ. IBM 的Watson的音频转文字接口支持 ...

  7. IntelliJ IDEA :解决idea导入项目爆红

    转:https://my.oschina.net/LevelCoder/blog/1802158 我们在导入一个新的项目到idea的时候,项目明明没有报错,但是会出现出了父包属于正常颜色外,其子包都会 ...

  8. 分享的js代码,从w3c上拓下来的

    <!DOCTYPE html><html><head> <title></title> <script>window._bd_s ...

  9. css 画箭头

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  10. 有关于dict(字典)的特性与操作方法

    有关于dict(字典)的特性与操作方法 1.字典的特性 语法: dic = {key1 : value1,key2 : value2,key3 : value3............} 注:字典中k ...