当前位置:   article > 正文

7-13 口罩发放 (10 分)_7-3 口罩发放 测试点

7-3 口罩发放 测试点
7-13 口罩发放 (10)
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <unordered_map>
using namespace std;

struct Record{
	string name, ID;
	bool state;
	string tim;
	int num; 	// 在当天的第几条记录 
}; 

Record r[10010];
Record w[10010];
int d, p, t, s, tot;
unordered_map <string, int> g;

bool checkID(string s)
{
	if (s.size() != 18) return false;
	for (int i=0; i<18; i++)
		if (s[i] < '0' || s[i] > '9') return false;
	
	return true; 
}

bool cmp(Record a, Record b) {
	if (a.tim < b.tim) return true;
	else if (a.tim == b.tim && a.num < b.num) return true;
	return false;
}

int main()
{
	cin >> d >> p;
	for (int day = 1; day <= d; day++)
	{
		cin >> t >> s;
		string a, b, c;
		bool st;
		int cnt = 0;
		for (int i=1; i<=t; i++) {
			cin >> a >> b >> st >> c;
			if (checkID(b)) {	// 检查身份证是否合法 
				cnt++;
				r[cnt] = {a, b, st, c, cnt}; 
			}
			if (st == 1) {
				tot++;
				w[tot] = r[cnt];
			}
		}
		sort(r+1, r+cnt+1, cmp);
		
		for (int i=1; i<=cnt; i++)
		{
			string cid = r[i].ID;
			if (g.count(cid) == 0 && s) {
				// cout << s << " --- " ;
				printf("%s %s\n", r[i].name.c_str(), r[i].ID.c_str());
				g[cid] = day;
				s--;
			} else {
				int lastDay = g[cid];
				//cout << "name last day : " << r[i].name << " " << lastDay << endl; 
				if (day - lastDay > p && s) {
					// cout << s << " --- ";
					printf("%s %s\n", r[i].name.c_str(), r[i].ID.c_str());
					s--;
				}
			}
			if (!s) break;
		}
	}
	for (int i=1; i<=tot; i++) 
	{
		bool printed = false;
		for (int j=1; j<i; j++) 
			if (w[j].ID == w[i].ID) {
				printed = true;
				break;
			}
		if(!printed) printf("%s %s\n", w[i].name.c_str(), w[i].ID.c_str());
	}
	return 0;	
} 

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/617053
推荐阅读
相关标签
  

闽ICP备14008679号