結果

問題 No.580 旅館の予約計画
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 20:22:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 1,989 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 45,872 KB
最終ジャッジ日時 2024-11-22 10:54:50
合計ジャッジ時間 10,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,264 KB
testcase_01 AC 136 ms
40,952 KB
testcase_02 AC 141 ms
41,492 KB
testcase_03 AC 147 ms
41,740 KB
testcase_04 AC 165 ms
41,696 KB
testcase_05 AC 149 ms
41,280 KB
testcase_06 AC 173 ms
41,492 KB
testcase_07 AC 170 ms
41,504 KB
testcase_08 AC 189 ms
41,616 KB
testcase_09 AC 191 ms
41,832 KB
testcase_10 AC 177 ms
41,996 KB
testcase_11 AC 189 ms
42,152 KB
testcase_12 AC 201 ms
43,276 KB
testcase_13 AC 195 ms
42,340 KB
testcase_14 AC 221 ms
44,132 KB
testcase_15 AC 246 ms
45,672 KB
testcase_16 AC 239 ms
45,288 KB
testcase_17 AC 234 ms
45,760 KB
testcase_18 AC 236 ms
45,308 KB
testcase_19 AC 239 ms
45,672 KB
testcase_20 AC 238 ms
45,432 KB
testcase_21 AC 235 ms
45,416 KB
testcase_22 AC 237 ms
45,812 KB
testcase_23 AC 234 ms
45,648 KB
testcase_24 AC 237 ms
45,212 KB
testcase_25 AC 233 ms
44,944 KB
testcase_26 AC 150 ms
41,524 KB
testcase_27 AC 163 ms
41,656 KB
testcase_28 AC 154 ms
41,596 KB
testcase_29 AC 151 ms
41,336 KB
testcase_30 AC 234 ms
45,328 KB
testcase_31 AC 232 ms
45,336 KB
testcase_32 AC 236 ms
45,872 KB
testcase_33 AC 238 ms
45,444 KB
testcase_34 AC 237 ms
45,740 KB
testcase_35 AC 145 ms
41,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static class Range implements Comparable<Range>{
		int begin, end;
		
		public Range(int begin, int end){
			this.begin = begin;
			this.end = end;
		}
		
		public int compareTo(Range arg0){
			if(Integer.compare(this.end, arg0.end) != 0){
				return Integer.compare(this.end, arg0.end);
			}else{
				return Integer.compare(this.begin, arg0.begin);
			}
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int n = sc.nextInt();
		final int m = sc.nextInt();
		
		Range[] range = new Range[m];
		for(int i = 0; i < m; i++){
			final int d_in = sc.nextInt();
			final String[] hhmm_in = sc.next().split(":");
			final int hh_in = Integer.parseInt(hhmm_in[0]);
			final int mm_in = Integer.parseInt(hhmm_in[1]);
			
			final int d_out = sc.nextInt();
			final String[] hhmm_out = sc.next().split(":");
			final int hh_out = Integer.parseInt(hhmm_out[0]);
			final int mm_out = Integer.parseInt(hhmm_out[1]);
			
			final int checkin  = 60 * ((24 * d_in)  + hh_in)  + mm_in;
			final int checkout = 60 * ((24 * d_out) + hh_out) + mm_out;
			
			range[i] = new Range(checkin, checkout + 1);
		}
		
		Arrays.sort(range);
		
		int answer = 0;
		int[] checkout_time = new int[n];
		for(int i = 0; i < m; i++){
			final int begin = range[i].begin;
			final int end = range[i].end;
			
			int latest_time = -1;
			int latest_pos = -1;
			for(int j = 0; j < n; j++){
				if(checkout_time[j] <= begin){
					if(latest_time < checkout_time[j]){
						latest_time = checkout_time[j];
						latest_pos = j;
					}
				}
			}	
			
			if(latest_pos >= 0){
				checkout_time[latest_pos] = end;
				answer++;
			}
			
			//System.out.println(begin + " " + end);
			//System.out.println(Arrays.toString(checkout_time));
		}
		
		System.out.println(answer);
		
	}
}
0