#include <bits/stdc++.h>
using namespace std;
const int N = 1e2+10;
int n;
map<string,int>amou;
struct node{
int day;
string name;
int change;
}cows[N];
string cow[] = {
"Bessie","Elsie","Mildred"};
bool cmp(node a, node b){
return a.day < b.day;
}
map<string,int>curboard;
int
USACO2017DECp3
最新推荐文章于 2021-08-12 21:46:16 发布