Submission #1350209


Source Code Expand

#include<string>
#include<iostream>
#include<vector>
#include<algorithm>
#include<iterator>


template<class T>
auto p(const T&t){
	std::cout << "\n";
	for (const auto & v : t) {
		std::cout << v << "\n";
	}std::cout << "\n";

}

using vecstr = std::vector<std::string>;
using str = std::string;

str numbers = "0123456789";
auto index(char c) {
	auto it = std::find(std::begin(numbers), std::end(numbers), c);
	return static_cast<size_t>(it - std::begin(numbers) );
}

int main(){
	vecstr vs;
	size_t N;
	str tmp;

	std::cin >> N;
	vs.reserve(N);
	for (size_t i{ 0 }; i < N; i++) {
		std::cin >> tmp;
		vs.emplace_back(tmp);
	}

	for (auto&v : vs) {
		auto in = index(v[3]);
		v[3] = in < 5 ? '0' : '5';

		auto sub = v.substr(5,4);
		auto post = std::stoul(sub);
		//std::cout << post <<"\n";
		auto post2 = (post / 10) * 10;
		post2 += post % 10 < 5 ?
			(post%10 == 0?0 : 5) : 10;
		if( 60<=(post2%100) ){
			(post2 -= 60) += 100;
		}
		auto t = std::to_string(post2);
		if (t.size() < 4) {
			t = str(4 - t.size(),'0')+t;
		}
		v = v.substr(0, 5) + t;
	}
//	p(vs);

	auto s = [&]() {std::sort(std::begin(vs), std::end(vs)); };
//	p(vs);
	s();
	str deltag = "DELETED";

	for (size_t i{ 1 }; i < vs.size();++i) {
		auto& v1 = vs[i - 1];
		auto& v2 = vs[i];
		auto n1 = std::stol( v1.substr(5,4) );
		auto n2 = std::stol(v2.substr(0, 4));
		if (n2 <= n1) {
			auto tmp = v1.substr(0,4) + "-" +
				std::max(v1.substr(5,4),v2.substr(5,4))
				;
			v1 = deltag;
			v2 = tmp;
		}
	}
//	p(vs);
	s();
	std::unique(std::begin(vs), std::end(vs));
//	p(vs);

	auto it = std::remove(std::begin(vs), std::end(vs), deltag);
	vs.erase(it,std::end(vs));
	vs.shrink_to_fit();
//	std::cout << "size:" << vs.size() << "\n";
	//vs.resize(vs.size() - 1);
	for (const auto&v : vs) {
		std::cout << v <<"\n";
	}
//	std::copy(std::begin(vs), std::end(vs), std::ostream_iterator<str>(std::cout, "\n"));
	return 0;
}


/*
test case

*/

Submission Info

Submission Time
Task D - 感雨時刻の整理
User zxc_identity
Language C++14 (GCC 5.4.1)
Score 0
Code Size 2013 Byte
Status WA
Exec Time 64 ms
Memory 2432 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 35
WA × 13
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, cho_cho_chokudai.txt, chokudai_ga_cho.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 1 ms 256 KB
00_sample_02.txt AC 1 ms 256 KB
00_sample_03.txt AC 1 ms 256 KB
cho_cho_chokudai.txt AC 54 ms 2432 KB
chokudai_ga_cho.txt AC 57 ms 2432 KB
test_01.txt WA 1 ms 256 KB
test_02.txt WA 1 ms 256 KB
test_03.txt WA 1 ms 256 KB
test_04.txt WA 1 ms 256 KB
test_05.txt WA 1 ms 256 KB
test_06.txt AC 2 ms 256 KB
test_07.txt AC 1 ms 256 KB
test_08.txt AC 1 ms 256 KB
test_09.txt AC 2 ms 256 KB
test_10.txt AC 2 ms 384 KB
test_11.txt AC 2 ms 256 KB
test_12.txt AC 2 ms 256 KB
test_13.txt AC 2 ms 256 KB
test_14.txt AC 2 ms 256 KB
test_15.txt AC 2 ms 384 KB
test_16.txt AC 2 ms 256 KB
test_17.txt AC 2 ms 256 KB
test_18.txt AC 2 ms 256 KB
test_19.txt AC 2 ms 256 KB
test_20.txt AC 2 ms 256 KB
test_21.txt AC 61 ms 2432 KB
test_22.txt AC 64 ms 2432 KB
test_23.txt AC 62 ms 2432 KB
test_24.txt AC 60 ms 2432 KB
test_25.txt AC 62 ms 2432 KB
test_26.txt AC 60 ms 2432 KB
test_27.txt AC 58 ms 2432 KB
test_28.txt WA 60 ms 2432 KB
test_29.txt AC 1 ms 256 KB
test_30.txt WA 1 ms 256 KB
test_31.txt WA 10 ms 640 KB
test_32.txt WA 1 ms 256 KB
test_33.txt WA 40 ms 1664 KB
test_34.txt AC 1 ms 256 KB
test_35.txt WA 2 ms 256 KB
test_36.txt AC 61 ms 2432 KB
test_37.txt WA 59 ms 2432 KB
test_38.txt AC 60 ms 2432 KB
test_39.txt AC 61 ms 2432 KB
test_40.txt WA 60 ms 2432 KB
test_41.txt AC 54 ms 2432 KB
test_42.txt AC 58 ms 2432 KB
test_43.txt AC 55 ms 2432 KB