ccf-20171203 Crontab問題

来源:https://www.cnblogs.com/JsonZhangAA/archive/2018/03/05/8511205.html
-Advertisement-
Play Games

這題有如下幾個點要註意: 1.最開始輸出的開始時間和截止時間,這裡是不包含截止時間的。 2.月份和星期的英文表示是大小寫任意的,並未規定必須是Sat這種形式。 3.星期天的數字標識是0。 我的思路是,首先將月份、天數、小時、分鐘、星期統統規格化,格式如下: 月份:規格化前:1,2-4 規格化後:1 ...


這題有如下幾個點要註意:

1.最開始輸出的開始時間和截止時間,這裡是不包含截止時間的。

2.月份和星期的英文表示是大小寫任意的,並未規定必須是Sat這種形式。

3.星期天的數字標識是0。

我的思路是,首先將月份、天數、小時、分鐘、星期統統規格化,格式如下:

月份:規格化前:1,2-4

   規格化後:1 2 3 4

再使用stringstream類來依次遍歷規格化的字元串。在遍歷月份的過程中,要考察天數與月份是否匹配,同時判定是否滿足星期的要求。

最後判定結果是否在小於截止時間,並且大於等於起始時間。

題目和代碼如下:

#include <bits/stdc++.h>
/*#include<stdio.h>
#include<iostream>
#include<cstring>
#include<stdlib.h>
#include<sstream>
#include<map>
#include<vector>*/
using namespace std;
class Time{
	public:
		int year,month,day,hour,minute;
		Time(int year_,int month_,int day_,int hour_,int minute_):year(year_),month(month_),day(day_),hour(hour_),minute(minute_){
		}	
		void ShowTime(){
			cout<<year<<","<<month<<","<<day<<","<<hour<<","<<minute<<endl;
		}
};
class Event{
	public:
		string min,hou,dayofmonth,mon,dayofweek,command;
		Event(string min_,string hou_,string dayofmonth_,string mon_,string dayofweek_,string command_):min(min_),hou(hou_),dayofmonth(dayofmonth_),mon(mon_),dayofweek(dayofweek_),command(command_){
		}
		void ShowEvent(){
			cout<<min<<","<<hou<<","<<dayofmonth<<","<<mon<<","<<dayofweek<<","<<command<<endl;
		}
};
string Int_to_String(int n)
{
	ostringstream stream;
	stream<<n;  //n為int類型
	return stream.str();
}
string Operator_special(string temps){
	string tts="";
	stringstream ss(temps);
	string temp="";
	while(getline(ss,temp,',')){
	if(temp.find("-")!=string::npos){
		stringstream ss1(temp);
		string temp_i="";
		string temp_j="";
		getline(ss1,temp_i,'-');
		getline(ss1,temp_j,'-');
		for(int i=atoi(temp_i.c_str());i<=atoi(temp_j.c_str());i++){
			tts+=Int_to_String(i);
			tts+=" ";
		}
	}else{
			tts+=temp;
			tts+=" ";
		}
	}
	return tts;
}

void toStandard(string &str)//轉化為標準小寫 
{
    int len=str.size();
    for(int i=0;i<len;++i)str[i]=tolower(str[i]);
}
int  main(){
	map<string,vector<string> > mmps;
	int n;
	string s,t;
	cin>>n>>s>>t;
	Time * Total[2];
	Total[0]=new Time(atoi(s.substr(0,4).c_str()),atoi(s.substr(4,2).c_str()),atoi(s.substr(6,2).c_str()),atoi(s.substr(8,2).c_str()),atoi(s.substr(10,2).c_str()));
	Total[1]=new Time(atoi(t.substr(0,4).c_str()),atoi(t.substr(4,2).c_str()),atoi(t.substr(6,2).c_str()),atoi(t.substr(8,2).c_str()),atoi(t.substr(10,2).c_str()));
	Event * event[n];
	for(int i1=0;i1<n;i1++){
		string temp_min,temp_hou,temp_dayofmonth,temp_mon,temp_dayofweek,command;
		cin>>temp_min>>temp_hou>>temp_dayofmonth>>temp_mon>>temp_dayofweek>>command;
		//event[i]=new Event(temp_min,temp_hou,temp_dayofmonth,temp_mon,temp_dayofweek,command);
		string result="";
		toStandard(temp_mon);//不區別大小寫,轉化為標準小寫
		map<string,int> months;
		months["jan"]=1,months["feb"]=2,months["mar"]=3,months["apr"]=4,months["may"]=5,months["jun"]=6,months["jul"]=7,months["aug"]=8,months["sep"]=9,months["oct"]=10,months["nov"]=11,months["dec"]=12;
		map<string,int>::iterator it;
		for(it=months.begin();it!=months.end();it++){
			if(temp_mon.find(it->first)!=string::npos){
			temp_mon.replace(temp_mon.find(it->first),3,Int_to_String(it->second));
			}
		}
		if(temp_mon=="*"){
			temp_mon="";
			for(int ii=1;ii<=12;ii++){
				temp_mon+=Int_to_String(ii);
				temp_mon+=" ";
			}
			//cout<<temp_mon<<endl;
		}else if(temp_mon.find(",")!=string::npos||temp_mon.find("-")!=string::npos){
			string tts=Operator_special(temp_mon);
			temp_mon=tts;
		}
		if(temp_dayofmonth=="*"){
			temp_dayofmonth="";
			for(int ii=1;ii<=31;ii++){
				temp_dayofmonth+=Int_to_String(ii);
				temp_dayofmonth+=" ";
			}
			//cout<<temp_dayofmonth<<endl;
		}else if(temp_dayofmonth.find(",")!=string::npos||temp_dayofmonth.find("-")!=string::npos){
			string tts=Operator_special(temp_dayofmonth);
			temp_dayofmonth=tts;
		}
		toStandard(temp_dayofweek);//不區別大小寫,轉化為標準小寫 
		map<string,int> weeks;
		weeks["sun"]=0,weeks["mon"]=1,weeks["tue"]=2,weeks["wed"]=3,weeks["thu"]=4,weeks["fri"]=5,weeks["sat"]=6;
		//map<string,int>::iterator it;
		for(it=weeks.begin();it!=weeks.end();it++){
			if(temp_dayofweek.find(it->first)!=string::npos){
			temp_dayofweek.replace(temp_dayofweek.find(it->first),3,Int_to_String(it->second));
			}
		}
		if(temp_dayofweek.find(",")!=string::npos||temp_dayofweek.find("-")!=string::npos){
			string tts=Operator_special(temp_dayofweek);
			temp_dayofweek=tts;
		}
		if(temp_hou=="*"){
			temp_hou="";
			for(int ii=0;ii<=23;ii++){
				temp_hou+=Int_to_String(ii);
				temp_hou+=" ";
			}
			//cout<<temp_hou<<endl;
		}else if(temp_hou.find(",")!=string::npos||temp_hou.find("-")!=string::npos){
			string tts=Operator_special(temp_hou);
			temp_hou=tts;
		}
		if(temp_min=="*"){
			temp_min="";
			for(int ii=0;ii<=59;ii++){
				temp_min+=Int_to_String(ii);
				temp_min+=" ";
			}
		}else if(temp_min.find(",")!=string::npos||temp_min.find("-")!=string::npos){
			string tts=Operator_special(temp_min);
			temp_min=tts;
		}
		string temps1="",temps2="",temps3="",temps4="";
		for(int i=Total[0]->year;i<=Total[1]->year;i++){
			int total_day0=0;
			for(int ii=1970;ii<i;ii++)//Total會在外層再包含一個迴圈 
			{
				if(ii%400==0||(ii%4==0&&ii%100!=0)){
						total_day0+=366;
				}else{
						total_day0+=365;
				}
			}
			istringstream inputString1(temp_mon);
			while(inputString1>>temps1){
				istringstream inputString2(temp_dayofmonth);
				while(inputString2>>temps2){
					int day_li=0;
					if(atoi(temps1.c_str())==2){
						if(i%400==0||(i%4==0&&i%100!=0)){
							day_li=29;
						}else{
							day_li=28;
						}
					}else if((atoi(temps1.c_str())==1)||(atoi(temps1.c_str())==3)||(atoi(temps1.c_str())==5)||(atoi(temps1.c_str())==7)||(atoi(temps1.c_str())==8)||(atoi(temps1.c_str())==10)||(atoi(temps1.c_str())==12)){
						day_li=31;
					}else{
						day_li=30;
					}
				/*	if(atoi(temps2.c_str())==31){
						cout<<"here"<<endl;
						cout<<day_li<<endl;
					}*/
					if(atoi(temps2.c_str())>day_li){
						continue;
					}
					int total_day=total_day0;
					if(temp_dayofweek!="*"){
						int ii=atoi(temps1.c_str());
						int num2=28;
						if(i%400==0||(i%4==0&&i%100!=0)){
							num2++;
						}
						switch(ii){
							case 12:total_day+=30;
							case 11:total_day+=31;
							case 10:total_day+=30;
							case 9:total_day+=31;
							case 8:total_day+=31;
							case 7:total_day+=30;
							case 6:total_day+=31;
							case 5:total_day+=30;
							case 4:total_day+=31;
							case 3:total_day+=num2;
							case 2:total_day+=31;
							case 1:break;
						}
						total_day+=atoi(temps2.c_str());
						total_day-=1;
						int week=(total_day%7+4)%7;
						/*if(command=="go_to_bed"&&(i==2018)){
							cout<<"total_day:"<<total_day<<endl;
							cout<<"week:"<<week<<endl;
							cout<<"temp_dayofweek:"<<temp_dayofweek<<endl;
							cout<<temps1<<temps2<<endl;
						}*/
						if(temp_dayofweek.find(Int_to_String(week))==string::npos){
							continue;
						}
					}
					istringstream inputString3(temp_hou);
					while(inputString3>>temps3){
						istringstream inputString4(temp_min);
						while(inputString4>>temps4){
							temps1=temps1.length()==1?(temps1="0"+temps1):temps1;
							temps2=temps2.length()==1?(temps2="0"+temps2):temps2;
							temps3=temps3.length()==1?(temps3="0"+temps3):temps3;
							temps4=temps4.length()==1?(temps4="0"+temps4):temps4;
							result=Int_to_String(i)+temps1+temps2+temps3+temps4;
							if(result>=s&&result<t)
								mmps[result].push_back(command);
						}
					}
				}
			}		
		}
	}
	for(map<string,vector<string> >::iterator it=mmps.begin();it!=mmps.end();++it)
    {
        map<string,int> isprt;
        for(size_t i=0;i<it->second.size();++i)
        {
            string dis=it->first+" "+it->second[i];
            if(isprt.count(dis)==0)
            {
                cout<<dis<<endl;
                isprt[dis]=1;
            }
        }
    }
	return 0;
}

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...