赞
踩
28号那天参加了gplt天梯赛,第一次参加没啥经验,发挥得不是特别好吧。L2-2是我做的最后一题,确实卡了很久(写了半个多小时拿了1分,心疼自己)。昨天一天都在想这题,今天中午的时候终于被我写出来了,特地记录一下。
为了抗击来势汹汹的 COVID19 新型冠状病毒,全国各地均启动了各项措施控制疫情发展,其中一个重要的环节是口罩的发放。
某市出于给市民发放口罩的需要,推出了一款小程序让市民填写信息,方便工作的开展。小程序收集了各种信息,包括市民的姓名、身份证、身体情况、提交时间等,但因为数据量太大,需要根据一定规则进行筛选和处理,请你编写程序,按照给定规则输出口罩的寄送名单。
输入第一行是两个正整数 D 和 P(1≤D,P≤30),表示有 D 天的数据,市民两次获得口罩的时间至少需要间隔 P 天。
接下来 D 块数据,每块给出一天的申请信息。第 i 块数据(i=1,⋯,D)的第一行是两个整数 T
i 和 Si(1≤Ti, Si ≤1000),表示在第 i 天有 Ti条申请,总共有 Si个口罩发放名额。随后 Ti行,每行给出一条申请信息,格式如下:
姓名 身份证号 身体情况 提交时间
给定数据约束如下:
能发放口罩的记录要求如下:
对于每一天的申请记录,每行输出一位得到口罩的人的姓名及身份证号,用一个空格隔开。顺序按照发放顺序确定。
在输出完发放记录后,你还需要输出有合法记录的、身体状况为 1 的申请人的姓名及身份证号,用空格隔开。顺序按照申请记录中出现的顺序确定,同一个人只需要输出一次。
4 2 5 3 A 123456789012345670 1 13:58 B 123456789012345671 0 13:58 C 12345678901234567 0 13:22 D 123456789012345672 0 03:24 C 123456789012345673 0 13:59 4 3 A 123456789012345670 1 13:58 E 123456789012345674 0 13:59 C 123456789012345673 0 13:59 F F 0 14:00 1 3 E 123456789012345674 1 13:58 1 1 A 123456789012345670 0 14:11
D 123456789012345672
A 123456789012345670
B 123456789012345671
E 123456789012345674
C 123456789012345673
A 123456789012345670
A 123456789012345670
E 123456789012345674
输出中,第一行到第三行是第一天的部分;第四、五行是第二天的部分;第三天没有符合要求的市民;第六行是第四天的部分。最后两行按照出现顺序输出了可能存在身体不适的人员。
这样的模拟题做起来还是挺怕的,细节很多。先分析一下题目要求:
我从外层循环开始将程序分为三部分:
vector<pair<string, string>> stList, ans;
map<string, int> records;
vector<Person> list;
int d, p, t, s;
这里有一个类Person,定义如下:
class Person {
string name, ID;
int state;
int subTime, subId;
public:
bool input(istream& in, int id);
bool isState();
string& getID();
string& getName();
int getSubTime();
int getSubId();
};
变量
方法
对于题目要求的d和p在程序一开始输入
cin >> d >> p;
然后在一个0 ~ (d - 1)的循环开头读取t和s
for (int i = 0; i < d; i++) {
cin >> t >> s;
....
}
在一个0 ~ (t - 1)的内层循环开头读取记录
for (int j = 0; j < t; j++) {
Person person;
if (!person.input(cin, j)) continue;
....
}
因为input读取的ID是不合法的时候返回false所以在这里就可以过滤不合法身份证的记录
最后大体输入结构应该是这样的
cin >> d >> p;
for (int i = 0; i < d; i++) {
cin >> t >> s;
....
for (int j = 0; j < t; j++) {
Person person;
if (!person.input(cin, j)) continue;
....
}
....
}
输入记录、排除不合法身份证的记录这两点已在输入部分给出
更新合法身份证申请时状态为1的记录的代码如下:
if (person.isState()) {
bool flag = true;
for (pair<string, string> e : stList) {
if (e.first == person.getID()) {
flag = false;
break;
}
}
if (flag) stList.push_back({person.getID(), person.getName()});
}
只处理状态为1的记录,定义一个初始为true的flag标志,遍历stList的记录,这个ID有出现过则将flag置false并跳出遍历,最后判断标志位,若为true则把这条记录添加到stList(只取id和name,因为只需要按输入顺序排序所以不需要特殊处理)。
最后代码如下:
for (int j = 0; j < t; j++) { Person person; if (!person.input(cin, j)) continue; //合法的输入 //状态1 if (person.isState()) { bool flag = true; for (pair<string, string> e : stList) { if (e.first == person.getID()) { flag = false; break; } } if (flag) stList.push_back({person.getID(), person.getName()}); } //放入list list.emplace_back(person); }
没啥可讲的
sort(list.begin(), list.end(), comp);
comp实现如下
bool comp(Person& a, Person& b) {
if (a.getSubTime() != b.getSubTime()) return a.getSubTime() < b.getSubTime();
return a.getSubId() < b.getSubId();
}
筛选符合条件的记录
一个循环遍历搞定,先贴代码:
for (Person& pe : list) {
if (!s) break;
if (records[pe.getID()] <= i) {
records[pe.getID()] = i + p + 1;
ans.push_back({pe.getID(), pe.getName()});
s--;
}
}
先判断s是否为0,是就跳出循环,因为map中一开始是空的,并且map在访问一个不存在的键时会创建一个默认的值放入,int默认为0,所以直接拿来比就行了,第一次加入的数据永远<=i。到了if语句块,就更新值为i + p + 1,即下一个冷却到期的日子,再把其记录到ans中,最后s–。
一个在外层循环的每日领取记录的输出
for (auto& e : ans) cout << e.second << ' ' << e.first << endl;
一个在程序结尾处的合法身份证申请时状态为1的记录的输出
for (auto& e : stList) cout << e.second << ' ' << e.first << endl;
所以输出结构大概是这样的:
....
for (int i = 0; i < d; i++) {
....
for (auto& e : ans) cout << e.second << ' ' << e.first << endl;
}
for (auto& e : stList) cout << e.second << ' ' << e.first << endl;
return 0;
#include <bits/stdc++.h> using namespace std; class Person { string name, ID; int state; int subTime, subId; public: bool input(istream& in, int id); bool isState(); string& getID(); string& getName(); int getSubTime(); int getSubId(); }; bool Person::input(istream& in, int id) { int h; in >> this->name >> this->ID >> this->state >> h; in.ignore(); in >> this->subTime; this->subTime += h * 60; this->subId = id; if (this->ID.size() != 18) return false; for (int i = 0; i < 18; i++) { if (!isdigit(this->ID[i])) return false; } return true; } bool Person::isState() { return this->state == 1; } string& Person::getID() { return this->ID; } string& Person::getName() { return this->name; } int Person::getSubTime() { return this->subTime; } int Person::getSubId() { return this->subId; } bool comp(Person& a, Person& b) { if (a.getSubTime() != b.getSubTime()) return a.getSubTime() < b.getSubTime(); return a.getSubId() < b.getSubId(); } int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); vector<pair<string, string>> stList, ans; map<string, int> records; vector<Person> list; int d, p, t, s; cin >> d >> p; for (int i = 0; i < d; i++) { cin >> t >> s; list.clear(); ans.clear(); for (int j = 0; j < t; j++) { Person person; if (!person.input(cin, j)) continue; //合法的输入 //状态1 if (person.isState()) { bool flag = true; for (pair<string, string> e : stList) { if (e.first == person.getID()) { flag = false; break; } } if (flag) stList.push_back({person.getID(), person.getName()}); } //放入list list.emplace_back(person); } //排序 sort(list.begin(), list.end(), comp); //筛选 for (Person& pe : list) { if (!s) break; if (records[pe.getID()] <= i) { records[pe.getID()] = i + p + 1; ans.push_back({pe.getID(), pe.getName()}); s--; } } //输出本日发放记录 for (auto& e : ans) cout << e.second << ' ' << e.first << endl; } //输出state == 1的 for (auto& e : stList) cout << e.second << ' ' << e.first << endl; return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。