Submission #335361


Source Code Expand

import java.util.*;

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

		n = sc.nextInt();
		start = new Integer[n];
		end = new Integer[n];

		//降り始めと振り終わりに分ける
		separate(start,end, n, sc);
		sc.close();
		
		//降り始めを基準にして昇順にソート
		ssort(start, end, n);

		//雨が振った時間がかぶっている場合合成
		connect(start, end, n);
		
		//重複なしで出力
		normalization(start, end, n);

	}

	private static void separate(Integer[] start, Integer[] end, int n, Scanner sc)
	{
		int i, tmp;
		for(i = 0; i < n; i++){
			String[] change = (sc.next()).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] = end[i] - 60 + 100;
	}
	
	private static void ssort(Integer[] start, Integer[] end, int n)
	{
		int i,k, tmp, tmp2;
		for (i = 1; i < n; i++) {
	        tmp = start[i];
	        tmp2 = end[i];
	        for (k = i; k > 0 && start[k-1] > tmp; k--){
	            start[k] = start[k -1];
	            end[k] = end[k -1];
	        }
	        start[k] = tmp;
	        end[k] =tmp2;
	    }
	}

	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]){
					if(end[k] <= end[i]){
						end[k] = end[i];
					} else {
						end[i] = end[k];
					}
				}

			}
		}
	}

	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 2229 Byte
Status TLE
Exec Time 2045 ms
Memory 39668 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 362 ms 23284 KB
00_sample_02.txt AC 355 ms 23264 KB
00_sample_03.txt AC 362 ms 23380 KB
cho_cho_chokudai.txt TLE 2042 ms 38800 KB
chokudai_ga_cho.txt TLE 2041 ms 38916 KB
test_01.txt AC 408 ms 23776 KB
test_02.txt AC 426 ms 23752 KB
test_03.txt AC 410 ms 23772 KB
test_04.txt AC 411 ms 23816 KB
test_05.txt AC 403 ms 23820 KB
test_06.txt AC 390 ms 24120 KB
test_07.txt AC 372 ms 23436 KB
test_08.txt AC 376 ms 23396 KB
test_09.txt AC 472 ms 26244 KB
test_10.txt AC 472 ms 26336 KB
test_11.txt AC 433 ms 25004 KB
test_12.txt AC 426 ms 24772 KB
test_13.txt AC 386 ms 23652 KB
test_14.txt AC 458 ms 26224 KB
test_15.txt AC 467 ms 26232 KB
test_16.txt AC 373 ms 23556 KB
test_17.txt AC 459 ms 26344 KB
test_18.txt AC 382 ms 23604 KB
test_19.txt AC 410 ms 24664 KB
test_20.txt AC 427 ms 24824 KB
test_21.txt TLE 2043 ms 39212 KB
test_22.txt TLE 2041 ms 39648 KB
test_23.txt TLE 2041 ms 39128 KB
test_24.txt TLE 2039 ms 39668 KB
test_25.txt TLE 2041 ms 39584 KB
test_26.txt TLE 2043 ms 39548 KB
test_27.txt TLE 2041 ms 39244 KB
test_28.txt TLE 2041 ms 39460 KB
test_29.txt AC 374 ms 23388 KB
test_30.txt AC 356 ms 23400 KB
test_31.txt AC 678 ms 31356 KB
test_32.txt AC 354 ms 23376 KB
test_33.txt TLE 2045 ms 37884 KB
test_34.txt AC 353 ms 23328 KB
test_35.txt AC 404 ms 24840 KB
test_36.txt TLE 2041 ms 39020 KB
test_37.txt TLE 2041 ms 39020 KB
test_38.txt TLE 2042 ms 39088 KB
test_39.txt TLE 2041 ms 39236 KB
test_40.txt TLE 2039 ms 39328 KB
test_41.txt TLE 2042 ms 38832 KB
test_42.txt TLE 2039 ms 39296 KB
test_43.txt TLE 2041 ms 39052 KB