Submission #335402


Source Code Expand

import java.util.*;

public class Main {
	public static void main(String[] args)
	{
		int n;
		Integer [] start, end;
		String[] data;
		Scanner sc = new Scanner(System.in);

		n = sc.nextInt();
		start = new Integer[n];
		end = new Integer[n];
		data = new String[n];
		
		for(int i = 0; i < n; i++) data[i] = sc.next();
		sc.close();
		//時間順(昇順)ソート
		Arrays.sort(data);
		
		//降り始めと振り終わりに分ける
		separate(start,end, n, data);
		
		//雨が振った時間がかぶっている場合合成
		connect(start, end, n);
		
		//重複なしで出力
		//normalization(start, end, n);

	}

	private static void separate(Integer[] start, Integer[] end, int n, String[] data)
	{
		int i;
		for(i = 0; i < n; i++){
			String[] change = (data[i]).split("-");
			marume(start,end,change, i);
			//System.out.println(start[i]);
			//System.out.println(end[i]);
		}
	}
	
	private static void marume(Integer[] start, Integer[] end, String[] change, int i)
	{
		int tmp;
		//start
		tmp = Integer.parseInt(change[0]);
		start[i] = (tmp - (tmp % 5));
	
		//end
		tmp = Integer.parseInt(change[1]) + 4;
		end[i] = (tmp - (tmp % 5));
		if(end[i] % 100 == 60) end[i] += 40;
	}

	private static void connect(Integer[] start, Integer[] end, int n)
	{
		int i,k;
		for(i = 0; i < n; i++){
			for(k = i + 1; k < n; k++){
				if(start[k] <= end[i]){
					start[k] = start[i];
					if(end[k] <= end[i]){
						end[k] = end[i];
					} else {
						end[i] = end[k];
					}
				}
			}
			if(i == 0 || end[i - 1] < start[i]){
				System.out.println(String.format("%04d-%04d", start[i], end[i]));
			}
		}
	}

//	private static void normalization(Integer[] start, Integer[] end, int n)
//	{
//		int i;
//		System.out.println(String.format("%04d-%04d", start[0], end[0]));
//		for(i = 1; i < n; i++){
//			//System.out.println(start[i] + "-" + end[i]);
//			if(end[i - 1] < start[i]){
//				System.out.println(String.format("%04d-%04d", start[i], end[i]));
//			}
//		}
//	}
}

Submission Info

Submission Time
Task D - 感雨時刻の整理
User ne260037
Language Java (OpenJDK 1.7.0)
Score 0
Code Size 2073 Byte
Status TLE
Exec Time 2071 ms
Memory 44256 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 29
TLE × 19
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 363 ms 23488 KB
00_sample_02.txt AC 356 ms 23464 KB
00_sample_03.txt AC 358 ms 23460 KB
cho_cho_chokudai.txt TLE 2042 ms 42976 KB
chokudai_ga_cho.txt TLE 2042 ms 44256 KB
test_01.txt AC 390 ms 23892 KB
test_02.txt AC 397 ms 23896 KB
test_03.txt AC 403 ms 23948 KB
test_04.txt AC 400 ms 23808 KB
test_05.txt AC 394 ms 23960 KB
test_06.txt AC 395 ms 23972 KB
test_07.txt AC 368 ms 23572 KB
test_08.txt AC 360 ms 23572 KB
test_09.txt AC 444 ms 26204 KB
test_10.txt AC 438 ms 25632 KB
test_11.txt AC 414 ms 24408 KB
test_12.txt AC 407 ms 24168 KB
test_13.txt AC 382 ms 23872 KB
test_14.txt AC 438 ms 25668 KB
test_15.txt AC 449 ms 26380 KB
test_16.txt AC 384 ms 23832 KB
test_17.txt AC 430 ms 26312 KB
test_18.txt AC 384 ms 23916 KB
test_19.txt AC 403 ms 24440 KB
test_20.txt AC 409 ms 24432 KB
test_21.txt TLE 2042 ms 43264 KB
test_22.txt TLE 2042 ms 42484 KB
test_23.txt TLE 2041 ms 42976 KB
test_24.txt TLE 2041 ms 43044 KB
test_25.txt TLE 2044 ms 43756 KB
test_26.txt TLE 2040 ms 43028 KB
test_27.txt TLE 2071 ms 43464 KB
test_28.txt TLE 2042 ms 43380 KB
test_29.txt AC 354 ms 23480 KB
test_30.txt AC 363 ms 23472 KB
test_31.txt AC 701 ms 32416 KB
test_32.txt AC 359 ms 23480 KB
test_33.txt TLE 2044 ms 41232 KB
test_34.txt AC 396 ms 23360 KB
test_35.txt AC 408 ms 24224 KB
test_36.txt TLE 2047 ms 42980 KB
test_37.txt TLE 2043 ms 43496 KB
test_38.txt TLE 2042 ms 43400 KB
test_39.txt TLE 2042 ms 42784 KB
test_40.txt TLE 2042 ms 42960 KB
test_41.txt TLE 2043 ms 41520 KB
test_42.txt TLE 2042 ms 42944 KB
test_43.txt TLE 2043 ms 41376 KB