1016. Phone Bills 解析

2023-11-26 16:32
文章标签 解析 1016 phone bills

本文主要是介绍1016. Phone Bills 解析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

直接把时间化成以秒为单位 排序 匹配 计算就好。

……………………更新线…………………………

这里会遇到上一个人名on下一个人名接着off的情况需要注意下

重新写了下代码,感觉清爽了一点

#include <iostream>
#include <algorithm>
#include <climits>
#include <cstring>
#include <vector>
#include <string>
#include <map>
#include <stack>
#include <queue>
#include <set>#define MAX 1010using namespace std;double rate[24];struct node{string name;int month;int dd;int hh;int mm;int t_int;int tag;
};struct dounode{node n1;node n2;int SumMin;double sum;
};struct ansnode{string name;int month;vector <dounode> list;double sum;ansnode(){sum = 0;};
};node l[MAX];
ansnode ans[MAX]; string on = "on-line";
string off = "off-line";int n;bool cmp(node n1 ,node n2){if(n1.name != n2.name)return n1.name < n2.name;elsereturn n1.t_int < n2.t_int;
}double rateCalculate(node n1 ,node n2,int & sumh){double nowrate = 0;if(n1.dd == n2.dd){//同一天if(n1.hh == n2.hh){//同一小时nowrate += rate[n1.hh] * (n2.mm - n1.mm);sumh += (n2.mm - n1.mm);}else{//不同小时nowrate += rate[n1.hh] * (60 - n1.mm);sumh += (60 - n1.mm);nowrate += rate[n2.hh] * n2.mm;sumh += n2.mm;for(int h = n1.hh + 1; h < n2.hh;h++){nowrate += rate[h] * 60;sumh += 60;}	}}else{//不同天sumh += (60 - n1.mm);sumh += n2.mm;nowrate += rate[n1.hh] * (60 - n1.mm);for(int h = n1.hh + 1 ; h < 24; h++){nowrate += rate[h] * 60;sumh += 60;}nowrate += rate[n2.hh] * n2.mm;for(int h = 0 ;h < n2.hh;h++){nowrate += rate[h] * 60;sumh += 60;}double day = 0;for(int i = 0 ; i < 24 ;i++)day += rate[i] * 60;nowrate += day * (n2.dd - n1.dd -1);sumh += (n2.dd - n1.dd -1) * 24 * 60;}return nowrate;
}int main(){for(int i = 0; i < 24 ;i ++){scanf("%lf",&rate[i]);rate[i] /= 100;}scanf("%d",&n);for(int i = 0 ; i < n ;i++){string tag;string t_str;cin >> l[i].name >> t_str >> tag;if(tag == on)l[i].tag = 0;else l[i].tag = 1;l[i].month = (t_str[0]-'0') * 10 + (t_str[1]-'0');l[i].dd = (t_str[3]-'0') * 10 + (t_str[4]-'0');l[i].hh = (t_str[6]-'0') * 10 + (t_str[7]-'0');l[i].mm = (t_str[9]-'0') * 10 + (t_str[10]-'0');l[i].t_int = l[i].dd * 24 * 60 + l[i].hh * 60 + l[i].mm;}sort(l,l+n,cmp);int pre = 0;string nowName = " ";int no = -1;int c = 0;bool pair = false;for(int i = 0 ; i <n ;i++){if(!pair && l[i].tag == 1)continue;else if(!pair && l[i].tag == 0){pair = true;pre = i;}else if(pair && l[i].tag == 0){pre = i;}else{if(l[pre].name == l[i].name){//同一个人的电话if(nowName != l[pre].name){no++;c++;nowName = l[pre].name;ans[no].name = nowName;ans[no].month = l[pre].month;}dounode t_dou;t_dou.SumMin = 0;t_dou.sum = rateCalculate(l[pre],l[i],t_dou.SumMin);		t_dou.n1 = l[pre];t_dou.n2 = l[i];ans[no].list.push_back(t_dou);ans[no].sum += t_dou.sum;ans[no].name = nowName;				}pair = false;}}for(int i = 0; i < c ;i++){cout << ans[i].name ;printf(" %02d\n",ans[i].month);for(int j = 0 ; j < ans[i].list.size();j++){printf("%02d:%02d:%02d %02d:%02d:%02d %d $%.02lf\n",ans[i].list[j].n1.dd,ans[i].list[j].n1.hh,ans[i].list[j].n1.mm,ans[i].list[j].n2.dd,ans[i].list[j].n2.hh,ans[i].list[j].n2.mm,ans[i].list[j].SumMin,ans[i].list[j].sum);}printf("Total amount: $%.02lf\n",ans[i].sum);}return 0;
}
……………………………………完……………………………………

#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <algorithm>using namespace std;struct Node {string name;string time;string state;
};int char2int(char i) {int result = 0;switch (i){case '1': result = 1; break;case '2': result = 2; break;case '3': result = 3; break;case '4': result = 4; break;case '5': result = 5; break;case '6': result = 6; break;case '7': result = 7; break;case '8': result = 8; break;case '9': result = 9; break;case '0': result = 0; break;default:break;}return result;
}int str2day(string s) {int day = 0;day = char2int(s[3]) * 10 + char2int(s[4]);return day;
}int str2hour(string s) {int hour = 0;hour = char2int(s[6]) * 10 + char2int(s[7]);return hour;
}int str2minute(string s) {int minute = 0;minute = char2int(s[9]) * 10 + char2int(s[10]);return minute;
}int CalRate(string time1, string time2, vector <int> rate) {//M1 < M2int D1, D2, H1, H2, M1, M2;D1 = str2day(time1);D2 = str2day(time2);H1 = str2hour(time1);H2 = str2hour(time2);M1 = str2minute(time1);M2 = str2minute(time2);int Sum = 0;if (D1 == D2) { //同一天if (H1 == H2) {//同一小时Sum += (M2 - M1)* rate[H1];return Sum;}else{//不同小时Sum += (60 - M1) * rate[H1];Sum += M2 * rate[H2];for (int i = H1+1; i < H2; i++)Sum += 60 * rate[i];return Sum;}}else{ //不同天Sum += (60 - M1)* rate[H1];for (int i = H1 + 1; i < 24; i++) {Sum += 60 * rate[i];}Sum += M2 * rate[H2];for (int i = 0; i < H2; i++) {Sum += 60 * rate[i];}for (int i = D1 + 1; i < D2; i++) {for (int j = 0; j < 24; j++) {Sum += rate[j] * 60;}}return Sum;}}void PrintTime(string s) {for (int i = 3; i <= 10; i++) {cout << s[i];}
}void TotalRate(vector <Node> list ,vector <int> rate) { //对一个用户的账单进行生成bool tag = false;//是否匹配bool Head = true;//又没有显示Headbool HaveBill = false;float SumRate = 0;int time = 0;Node pre; //匹配前//cout << list[0].name << " " << list[0].time[0] << list[0].time[1] << endl;for (int i = 0; i < list.size(); i++) {if (!tag && list[i].state == "off-line")//前面没有on 却有off 忽略continue;else if (!tag && list[i].state == "on-line") {//前面没有on 后面weion pre等于该数tag = true;pre = list[i];}else if (tag && list[i].state == "on-line") { //前面有on 后面还有on 更新prepre = list[i];}else {//匹配成功if(Head){cout << list[i].name << " " << list[i].time[0] << list[i].time[1] << endl;Head = false;HaveBill = true;}tag = false;int PreTime = str2day(pre.time) * 24 * 60 + str2hour(pre.time) * 60 + str2minute(pre.time);int Time = str2day(list[i].time) * 24 * 60 + str2hour(list[i].time) * 60 + str2minute(list[i].time);int gapTime = Time - PreTime;float tempRate = CalRate(pre.time, list[i].time, rate);float tR = tempRate / 100;SumRate += tR;PrintTime(pre.time); cout << " ";PrintTime(list[i].time);cout << " " << gapTime << " $";printf("%.02f", tR);cout << endl;}}if (HaveBill) {cout << "Total amount: $";printf("%.2f", SumRate);cout << endl;}
}bool cmp(Node N1 ,Node N2) {if (N1.name < N2.name)return true;else if (N1.name == N2.name && str2day(N1.time) < str2day(N2.time))return true;else if (N1.name == N2.name && str2day(N1.time) == str2day(N2.time) && str2hour(N1.time) < str2hour(N2.time))return true;else if (N1.name == N2.name && str2day(N1.time) == str2day(N2.time) && str2hour(N1.time) == str2hour(N2.time) && str2minute(N1.time) < str2minute(N2.time))return true;elsereturn false;
}int main() {vector <int> rate;	int tempRate;for (int i = 0; i < 24; i++) {cin >> tempRate;rate.push_back(tempRate);}int N;//记录数cin >> N;Node * record = new Node[N];set<string> r;for (int i = 0; i < N; i++) {cin >> record[i].name >> record[i].time >> record[i].state;r.insert(record[i].name);}sort(record, record + N, cmp);//对记录进行排序vector <Node> * List = new vector<Node>[r.size()]; //对不同用户进行分组string temp = record[0].name;int tempi = 0;for (int i = 0; i < N; i++) {//分组if (temp == record[i].name)List[tempi].push_back(record[i]);else{tempi++;temp = record[i].name;List[tempi].push_back(record[i]);}}//for (int i = 0; i < r.size(); i++) {//	for (int j = 0; j < List[i].size(); j++)//		cout << List[i][j].name << " " << List[i][j].time << " " << List[i][j].state << endl;//}for (int i = 0; i < r.size(); i++) {TotalRate(List[i], rate);}return 0;}


这篇关于1016. Phone Bills 解析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/426016

相关文章

使用Python实现批量访问URL并解析XML响应功能

《使用Python实现批量访问URL并解析XML响应功能》在现代Web开发和数据抓取中,批量访问URL并解析响应内容是一个常见的需求,本文将详细介绍如何使用Python实现批量访问URL并解析XML响... 目录引言1. 背景与需求2. 工具方法实现2.1 单URL访问与解析代码实现代码说明2.2 示例调用

SSID究竟是什么? WiFi网络名称及工作方式解析

《SSID究竟是什么?WiFi网络名称及工作方式解析》SID可以看作是无线网络的名称,类似于有线网络中的网络名称或者路由器的名称,在无线网络中,设备通过SSID来识别和连接到特定的无线网络... 当提到 Wi-Fi 网络时,就避不开「SSID」这个术语。简单来说,SSID 就是 Wi-Fi 网络的名称。比如

SpringCloud配置动态更新原理解析

《SpringCloud配置动态更新原理解析》在微服务架构的浩瀚星海中,服务配置的动态更新如同魔法一般,能够让应用在不重启的情况下,实时响应配置的变更,SpringCloud作为微服务架构中的佼佼者,... 目录一、SpringBoot、Cloud配置的读取二、SpringCloud配置动态刷新三、更新@R

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加

在C#中合并和解析相对路径方式

《在C#中合并和解析相对路径方式》Path类提供了几个用于操作文件路径的静态方法,其中包括Combine方法和GetFullPath方法,Combine方法将两个路径合并在一起,但不会解析包含相对元素... 目录C#合并和解析相对路径System.IO.Path类幸运的是总结C#合并和解析相对路径对于 C

Java解析JSON的六种方案

《Java解析JSON的六种方案》这篇文章介绍了6种JSON解析方案,包括Jackson、Gson、FastJSON、JsonPath、、手动解析,分别阐述了它们的功能特点、代码示例、高级功能、优缺点... 目录前言1. 使用 Jackson:业界标配功能特点代码示例高级功能优缺点2. 使用 Gson:轻量

Java如何接收并解析HL7协议数据

《Java如何接收并解析HL7协议数据》文章主要介绍了HL7协议及其在医疗行业中的应用,详细描述了如何配置环境、接收和解析数据,以及与前端进行交互的实现方法,文章还分享了使用7Edit工具进行调试的经... 目录一、前言二、正文1、环境配置2、数据接收:HL7Monitor3、数据解析:HL7Busines

python解析HTML并提取span标签中的文本

《python解析HTML并提取span标签中的文本》在网页开发和数据抓取过程中,我们经常需要从HTML页面中提取信息,尤其是span元素中的文本,span标签是一个行内元素,通常用于包装一小段文本或... 目录一、安装相关依赖二、html 页面结构三、使用 BeautifulSoup javascript

网页解析 lxml 库--实战

lxml库使用流程 lxml 是 Python 的第三方解析库,完全使用 Python 语言编写,它对 XPath表达式提供了良好的支 持,因此能够了高效地解析 HTML/XML 文档。本节讲解如何通过 lxml 库解析 HTML 文档。 pip install lxml lxm| 库提供了一个 etree 模块,该模块专门用来解析 HTML/XML 文档,下面来介绍一下 lxml 库

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象