1016. Phone Bills (25)

本文概述了AI音视频处理领域的关键技术,包括视频分割、语义识别、自动驾驶、AR、SLAM等,并探讨了其在实际应用中的作用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A long-distance telephone company charges its customers by the following rules:

Making a long-distance call costs a certain amount per minute, depending on the time of day when the call is made. When a customer starts connecting a long-distance call, the time will be recorded, and so will be the time when the customer hangs up the phone. Every calendar month, a bill is sent to the customer for each minute called (at a rate determined by the time of day). Your job is to prepare the bills for each month, given a set of phone call records.

Input Specification:

Each input file contains one test case. Each case has two parts: the rate structure, and the phone call records.

The rate structure consists of a line with 24 non-negative integers denoting the toll (cents/minute) from 00:00 - 01:00, the toll from 01:00 - 02:00, and so on for each hour in the day. 

The next line contains a positive number N (<= 1000), followed by N lines of records. Each phone call record consists of the name of the customer (string of up to 20 characters without space), the time and date (mm:dd:hh:mm), and the word "on-line" or "off-line".

For each test case, all dates will be within a single month. Each "on-line" record is paired with the chronologically next record for the same customer provided it is an "off-line" record. Any "on-line" records that are not paired with an "off-line" record are ignored, as are "off-line" records not paired with an "on-line" record. It is guaranteed that at least one call is well paired in the input. You may assume that no two records for the same customer have the same time. Times are recorded using a 24-hour clock.

Output Specification:

For each test case, you must print a phone bill for each customer.

Bills must be printed in alphabetical order of customers' names. For each customer, first print in a line the name of the customer and the month of the bill in the format shown by the sample. Then for each time period of a call, print in one line the beginning and ending time and date (dd:hh:mm), the lasting time (in minute) and the charge of the call. The calls must be listed in chronological order. Finally, print the total charge for the month in the format shown by the sample.

Sample Input:
10 10 10 10 10 10 20 20 20 15 15 15 15 15 15 15 20 30 20 15 15 10 10 10
10
CYLL 01:01:06:01 on-line
CYLL 01:28:16:05 off-line
CYJJ 01:01:07:00 off-line
CYLL 01:01:08:03 off-line
CYJJ 01:01:05:59 on-line
aaa 01:01:01:03 on-line
aaa 01:02:00:01 on-line
CYLL 01:28:15:41 on-line
aaa 01:05:02:24 on-line
aaa 01:04:23:59 off-line
Sample Output:
CYJJ 01
01:05:59 01:07:00 61 $12.10
Total amount: $12.10
CYLL 01
01:06:01 01:08:03 122 $24.40
28:15:41 28:16:05 24 $3.85
Total amount: $28.25
aaa 01
02:00:01 04:23:59 4318 $638.80
Total amount: $638.80'
/*典型的排序算法
#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
struct Records
{
	int start, dd, hh, mm;
	bool isOn;
	bool operator < (const Records &rec) const
	{
		return start < rec.start;
	}
};
struct Call
{
	int sd, sh, sm, ed, eh, em, time;
	double money;
};
vector<Records> records[500];
vector<Call> calls[500];
map<string, int> mp;
int main(void)
{
	//
	int rate[24]; //不同的小时内每分钟收取的费用
	for (int i = 0; i < 24; ++i)
		scanf("%d", &rate[i]);
	//
	int n;
	scanf("%d", &n);
	char name[21], status[10];
	int mon;//月份
	int count = 0, index;
	map<string, int> :: iterator iter;
	Records rec;
	for (int i = 0; i < n; ++i)
	{
		//输入电话记录,name, 
		scanf("%s%d:%d:%d:%d%s", name, &mon, &rec.dd, &rec.hh, &rec.mm, status);
		iter = mp.find(name); //给每个name分配一个下标
		if (iter == mp.end())
		{
			mp.insert(make_pair(name, count));
			index = count++; //count标志有多少个用户, index标志name映射的下标
		}
		else
			index = iter -> second;
		if (status[1] == 'n')
			rec.isOn = true;
		else
			rec.isOn = false;
		rec.start = rec.dd * 24 * 60 + rec.hh * 60 + rec.mm;
		records[index].push_back(rec);
	}
	int dayMoney = 0, k;
	for (k = 0; k < 24; ++k)
		dayMoney += rate[k] * 60;
	Call call;
	for (int j = 0; j < count; ++j)
	{
		sort(records[j].begin(), records[j].end());
		for (int i = 1; i < records[j].size(); ++i)
		{
			if (records[j][i].isOn == false && records[j][i - 1].isOn == true)
			{
				call.sd = records[j][i-1].dd;
				call.sh = records[j][i-1].hh;
				call.sm = records[j][i-1].mm;
				call.ed = records[j][i].dd;
				call.eh = records[j][i].hh;
				call.em = records[j][i].mm;
				call.time = records[j][i].start - records[j][i-1].start;
				if (call.ed > call.sd)
				{
					
					call.money = (call.ed - call.sd - 1) * dayMoney;
					call.money += (60 - call.sm) * rate[call.sh];
					k = call.sh + 1;
					while (k < 24)
						call.money += 60 * rate[k++];
					k = 0;
					while (k < call.eh)
						call.money += 60 * rate[k++];
					call.money += call.em * rate[call.eh];
				}
				else
				{
					if (call.sh < call.eh)
					{
						call.money = (60 - call.sm) * rate[call.sh];
						k = call.sh + 1;
						while (k < call.eh)
						{
							call.money += 60 * rate[k++];
						}
						call.money += call.em * rate[call.eh];
					}
					else
						call.money = (call.em - call.sm) * rate[call.sh];
				}
				calls[j].push_back(call);
				++i;
			}
			
		}

	}
	for (map<string, int> :: iterator iter = mp.begin(); iter != mp.end(); ++iter)
	{
		if (calls[iter->second].size() == 0)//有有效记录才会有输出,注意如果没有这句代码会导致两个测试案例通不过
			continue;
		printf("%s %02d\n", iter -> first.c_str(), mon);
		int money = 0;
		for (vector<Call> :: iterator vIter = calls[iter->second].begin(); vIter != calls[iter->second].end(); ++vIter)
		{
			printf("%02d:%02d:%02d %02d:%02d:%02d %d $%.2f\n", vIter->sd, vIter->sh, vIter->sm, vIter->ed, vIter->eh, vIter->em, vIter->time, vIter->money * 0.01);
			money += vIter -> money;
		}
		printf("Total amount: $%.2f\n", money * 0.01);
	}
}
//改进过后的方法,只有用一个vector保存数据,进行一次排序
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <cstring>
using namespace std;

struct Call
{
	char str[24];
	int month, day, hour, miniter, total;
	bool On;
	bool operator < (const Call & ca) const
	{
		int legal = strcmp(str, ca.str);
		if ( legal != 0)
			return legal < 0 ? true : false;
		else
			return total < ca.total;
	}
};

vector<Call> call;
int rate[24];
int oneDay;
int oneHour[24];
void show(Call a, Call b)
{
	printf("%02d:%02d:%02d %02d:%02d:%02d %d", a.day, a.hour, a.miniter, b.day, b.hour, b.miniter, b.total - a.total);
}
int getMoney(Call call)
{
	int money = 0;
	for (int i = 0; i < call.day; ++i)
		money += oneDay;
	for (int i = 0; i < call.hour; ++i)
		money += oneHour[i];
	money += call.miniter * rate[call.hour];
	return money;
}
int main(void)
{
	oneDay = 0;
	for (int i = 0; i < 24; ++i)
	{
		scanf("%d", &rate[i]);
		oneHour[i] = rate[i] * 60;
		oneDay += oneHour[i];
	}
	int n;
	scanf("%d", &n);
	call.resize(n);
	char status[10];
	for (int i = 0; i < n; ++i)
	{
		scanf("%s%d:%d:%d:%d%s", call[i].str, &call[i].month, &call[i].day, &call[i].hour, &call[i].miniter, status);
		call[i].total = call[i].day * 24 * 60 + call[i].hour * 60 + call[i].miniter;
		if (status[1] == 'n')
			call[i].On = true;
		else
			call[i].On = false;
	}
	sort(call.begin(), call.end());
	bool hasP = false;
	int money = 0, moneyC;
	for (int i = 1; i < n; ++i)
	{
		if (strcmp(call[i].str, call[i-1].str) != 0)
		{
			if (hasP)
				printf("Total amount: $%.2f\n", money * 0.01);
			hasP = false;
			money = 0;
			continue;
		}
		if (call[i-1].On && !call[i].On) //有效记录
		{
			if (hasP == false)
			{	
				printf("%s %02d\n", call[i].str, call[i].month);
				hasP = true;
			}
			show(call[i-1], call[i]);
			moneyC= getMoney(call[i]) - getMoney(call[i-1]);
			printf(" $%.2f\n", moneyC * 0.01);
			money += moneyC;
		}
	}
	if (hasP)
		printf("Total amount: $%.2f\n", money * 0.01);
	return 0;
}


优化这个sql SELECT count( 1 ) FROM ( SELECT B.ID, B.PURCHASE_REQUEST_ID, B.MATERIAL_ID, B.MATERIAL_CODE, B.MATERIAL_NAME, B.STANDARD, B.MODEL_ID, B.BILL_ROW_ID, B.BILL_NO, BILL_NAME, B.MODEL_CODE, B.MODEL_NAME, B.PARENT_MODEL_ID, B.PARENT_MODEL_CODE, B.PARENT_MODEL_NAME, B.UNIT_CODE, B.UNIT_NAME, B.PURCHASE_TYPE_CODE, CAST( NVL( B.APPLY_NUM, 0 ) AS NUMBER ( 24, 10 ) ) AS APPLY_NUM, CAST( NVL( B.DEAL_NUM, 0 ) AS NUMBER ( 24, 10 ) ) AS DEAL_NUM, CAST( NVL( B.RETURN_NUM, 0 ) AS NUMBER ( 24, 10 ) ) AS RETURN_NUM, B.DEAL_USER_ID, B.DEAL_USER_NAME, CAST( NVL( B.PRICE, 0 ) AS NUMBER ( 24, 10 ) ) AS PRICE, CAST( NVL( B.AMOUNT, 0 ) AS NUMBER ( 24, 10 ) ) AMOUNT, B.IMPLEMENT_CODE, B.IMPLEMENT_NAME, B.IMPLEMENT_INVEST_AMOUNT, B.PURCHASE_MANAGER_ID, B.PURCHASE_MANAGER_NAME, B.PROVIDER_ID, B.PROVIDER_NAME, B.REMARK, B.DELIVER_AREA, B.DELIVER_ADDRESS, B.RECEIVE_PEOPLE, B.RECEIVE_PEOPLE_PHONE, B.ITEM_STATUS, B.COST_CENTER, B.COST_BUDGET_CODE, B.COST_IMPLEMENT_NAME, B.FRAME_CONT_ID, B.FRAME_CONT_CODE, B.FRAME_CONT_NAME, B.DETAIL_CONFIG, B.PURCHASE_CATEGORY_CODE, B.INVOICE_TITLE_CODE, B.INVOICE_SEND_ADDRRSS, B.MATERIAL_REQUEST_ITEM_ID, B.YEAR, B.DELETE_FLAG, B.PROVINCE_CODE, B.REASON, B.PARENT_ITEM_ID, B.FRAME_CONT_ITEM_ID, B.SUB_MATERIAL_REQUEST_ID, B.SUB_MATERIAL_REQUEST_CODE, B.MATERIAL_URL, B.RECOMMEND_PROVIDER_NAMES, C.PURCHASE_REQUEST_CODE, C.PURCHASE_REQUEST_NAME, C.APPLY_TYPE_CODE, C.CREATOR_NAME, C.APPLY_TELEPHONE, C.COMPANY_NAME, C.DEPT_NAME, B.CREATE_TIME, TO_CHAR( B.CREATE_TIME, 'YYYY-MM-DD' ) CREATE_TIME_STR, C.ARRIVE_TIME, C.IS_TO_END, C.MONEY_WAY_CODE, C.OWN, C.APPLY_CATEGORY_CODE, C.manu_Type, C.BILL_ID, MMD.MATERIAL_TYPE_CODE, B.BRANCH_COMPANY_DEAL_USER_ID, B.BRANCH_COMPANY_DEAL_USER_NAME, ( SELECT ORG_NAME FROM ORGANIZATIONS WHERE DELETE_FLAG = '0' AND ORG_CODE = ( SELECT PARENT_COMPANY_NO FROM ORGANIZATIONS WHERE ID = B.MATERIAL_DEPT_ID )) AS MATERIAL_COMPANY_NAME, B.ORIGINAL, B.PROVIDER_PRODUCT_MODEL, B.PROVIDER_PRODUCT_NAME, B.PRODUCT_DESC, B.Back_Flag, CASE WHEN MMD.material_type_code = 'WZ' THEN '1' WHEN MMD.material_type_code = 'FW' THEN '2' ELSE '3' END apply_category_code_item, NVL( C.IS_CARDSYSTEM_REQUEST, '0' ) IS_CARDSYSTEM_REQUEST, B.APPLY_GROUP_AUTHORITES, B.SCIENTIFIC_RESEARCH_ID, B.SCIENTIFIC_RESEARCH_CODE, B.SCIENTIFIC_RESEARCH_NAME, B.PREQUALFY_CODE, nvl( C.IS_QUICK, '0' ) AS IS_QUICK, C.PURCHASE_WAY_CODE, C.PURCHASE_TYPE_CODE PURCHASE_TYPE_CODE_P, C.ORIGINAL_TYPE, C.PURCHASE_REQUEST_BILLS_TYPE, B.IS_FRAME_CONT_MONAD FROM PURCHASE_REQUEST_ITEM B LEFT JOIN PURCHASE_REQUEST C ON B.PURCHASE_REQUEST_ID = C.ID LEFT JOIN MATERIAL_DATA MMD ON MMD.ID = B.MATERIAL_ID AND MMD.DELETE_FLAG = '0' WHERE B.delete_flag = '0' AND B.Item_Status IN ( 1 ) AND NOT EXISTS ( SELECT * FROM purchase_request_item_log pril WHERE B.id = pril.purchase_request_item_id AND pril.lock_status = '1' AND pril.delete_flag = '0' ) AND ( ( c.apply_type_code NOT IN ( '20', '41', '3' ) AND nvl( B.Apply_Num, 0 ) > nvl( B.Deal_Num, 0 )) OR c.apply_type_code IN ( '20', '41', '3' ) ) AND B.Deal_User_Id =: 1 AND C.MONEY_WAY_CODE =: 2 AND C.APPLY_TYPE_CODE =: 3 AND C.PAY_OUT_TYPE_CODE =: 4 AND C.APPLY_CATEGORY_CODE =: 5 AND NVL( C.IS_CARDSYSTEM_REQUEST, '0' ) = : 6 AND NOT EXISTS ( SELECT * FROM purchase_request_item p left join material_province mp ON p.material_id = mp.material_id WHERE p.delete_flag = 0 AND mp.delete_flag = 0 AND mp.material_status = 03 AND mp.org_code = p.province_code AND p.id = B.id ) ORDER BY C.ID, B.ID ASC)
06-08
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值