작성
·
303
0
문제를 풀어서 보여지는 테스트 케이스는 다 맞는데 반례가 있을까요?
#include <bits/stdc++.h>
using namespace std;
int n;
int temp;
pair<int, int> team1;
pair<int, int> team2;
int team1total;
int team2total;
string mmss;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for(int i = 0; i < n; i++){
cin >> temp >> mmss;
string m = mmss.substr(0,2);
string s = mmss.substr(3,2);
int mm = atoi(m.c_str());
int ss = atoi(s.c_str()) + 60*mm;
if(team1.first == team2.first){
if(temp == 1){
team1.first++;
team1.second = ss;
}else{
team2.first++;
team2.second = ss;
}
}else if(team1.first > team2.first){
if(temp == 1){
team1.first++;
}else{
team2.first++;
if(team1.first == team2.first){
team1total += ss - team1.second;
team1.second = 0;
team2.second = 0;
}
}
}else if(team1.first < team2.first){
if(temp == 2){
team2.first++;
}else{
team2.first++;
if(team1.first == team2.first){
team2total += ss - team2.second;
team2.second = 0;
team1.second = 0;
}
}
}
}
if(team1.second != 0){
team1total += 48*60 - team1.second;
}else if(team2.second != 0){
team2total += 48*60 - team2.second;
}
string total1Time_first = to_string(team1total / 60);
string total1Time_second = to_string(team1total % 60);
string total2Time_first = to_string(team2total / 60);
string total2Time_second = to_string(team2total % 60);
if(total1Time_first.length() == 1)total1Time_first = "0" + total1Time_first;
if(total1Time_second.length() == 1)total1Time_second = total1Time_second +"0";
if(total2Time_first.length() == 1)total2Time_first = "0" + total1Time_first;
if(total2Time_second.length() == 1)total2Time_second = total2Time_second +"0";
cout << total1Time_first+":"+total1Time_second << "\n";
cout << total2Time_first+":"+total2Time_second << "\n";
return 0;
}
답변 1
0
안녕하세요 성민님 ㅎㅎ
예제 5를 입력하게 되면 다음과 같이 뜹니다. 제대로 동작하지 않습니다.
해당 부분이 반례인 것 같습니다 확인 부탁드립니다.
5
1 01:10
1 02:20
2 45:30
2 46:40
2 47:50
45:30
045:10
또 질문 있으시면 언제든지 질문 부탁드립니다.
좋은 수강평과 별점 5점은 제가 큰 힘이 됩니다. :)
감사합니다.
강사 큰돌 올림.
감사합니다