摘要:
//http://pat.zju.edu.cn/contests/pat-a-practise/1016#include #include #include #include #include #include using namespace std;#define INF 0xefffffftypedef struct Phone_Record{ string name; int month; int day; int hour; int minute; string status; int total;};bool cpm(Phone_Record... 阅读全文
摘要:
//http://pat.zju.edu.cn/contests/pat-a-practise/1014 //本题需要有较好的抽象能力,把题目的问题,转化了相应的数学模型,这样就容易办了 #include #include #include #include #include using namespace std;#define INF 0xefffffftypedef struct Custo... 阅读全文