/*問題描述:a時b分上課,牛牛到教室要x分鐘,所以牛牛最晚什麼時候起床。
思考:不用思考,簡單題最晚當然是 上課時間-從宿舍到教室花費的時間
*/#include#include
#include
#include
using
namespace
std;
intmain()
intspend_hour;
cin >>spend_hour;
intschool_h, shool_m;
cin >> school_h >>shool_m;
sort(time_v.begin(), time_v.end());
int time = school_h * 60 + shool_m -spend_hour;
for (int i = 1; i < num; i++)
}system(
"pause");
return0;
}
方法二:
#includeusing namespace std;int main()
int x;
cin >> x;
int h,m;
cin >> h >> m;
int temp = 60*h + m - x;
auto it = upper_bound(aset.begin(),aset.end(),temp);
it--;
temp = *(it);
cout << temp/60 << " " << temp%60;
網易程式設計題 牛牛的鬧鐘
問題描述 牛牛總是睡過頭,所以他定了很多鬧鐘,只有在鬧鐘響的時候他才會醒過來並且決定起不起床。從他起床算起他需要x分鐘到達教室,上課時間為當天的a時b分,請問他最晚可以什麼時間起床 輸入描述 每個輸入包含乙個測試用例。每個測試用例的第一行包含乙個正整數,表示鬧鐘的數量n n 100 接下來的n行每行...
2019網易實習程式設計題 牛牛的鬧鐘
牛牛總是睡過頭,所以他定了很多鬧鐘,只有在鬧鐘響的時候他才會醒過來並且決定起不起床。從他起床算起他需要x分鐘到達教室,上課時間為當天的a時b分,請問他最晚可以什麼時間起床 輸入描述 每個輸入包含乙個測試用例。每個測試用例的第一行包含乙個正整數,表示鬧鐘的數量n n 100 接下來的n行每行包含兩個整...
網易2019實習生招聘程式設計題(牛牛的鬧鐘)
題目 牛牛總是睡過頭,所以他定了很多鬧鐘,只有在鬧鐘響的時候他才會醒過來並且決定起不起床。從他起床算起他需要x分鐘到達教室,上課時間為當天的a時b分,請問他最晚可以什麼時間起床 輸入描述 每個輸入包含乙個測試用例。每個測試用例的第一行包含乙個正整數,表示鬧鐘的數量n n 100 接下來的n行每行包含...