結果

問題 No.561 東京と京都
ユーザー villachvillach
提出日時 2017-09-20 06:49:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 5,186 ms
コンパイル使用メモリ 88,032 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-11-08 02:57:05
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
39,788 KB
testcase_01 AC 133 ms
41,264 KB
testcase_02 AC 135 ms
41,132 KB
testcase_03 AC 134 ms
41,040 KB
testcase_04 AC 135 ms
41,136 KB
testcase_05 AC 123 ms
40,384 KB
testcase_06 AC 138 ms
41,316 KB
testcase_07 AC 133 ms
40,980 KB
testcase_08 AC 138 ms
41,028 KB
testcase_09 AC 140 ms
41,140 KB
testcase_10 AC 138 ms
41,088 KB
testcase_11 AC 146 ms
41,240 KB
testcase_12 AC 154 ms
41,296 KB
testcase_13 AC 174 ms
41,528 KB
testcase_14 AC 148 ms
41,444 KB
testcase_15 AC 156 ms
41,296 KB
testcase_16 AC 160 ms
41,364 KB
testcase_17 AC 155 ms
41,660 KB
testcase_18 AC 172 ms
41,520 KB
testcase_19 AC 171 ms
41,456 KB
testcase_20 AC 163 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class N561 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		int i, a, b, x;
		ArrayList<Integer> works = new ArrayList<Integer>();
		LinkedList<Integer> visited = new LinkedList<Integer>();
		LinkedList<Integer> queue = new LinkedList<Integer>();
		for(i = 0;i < n;++i){
			works.add(sc.nextInt());
			works.add(sc.nextInt());
			visited.add(0);
			visited.add(0);
		}
		queue.add(0);
		queue.add(1);
		visited.set(0, works.get(0));
		visited.set(1, works.get(1) - d);
		while(queue.size() > 0){
			i = queue.poll();
			x = visited.get(i);
			
			if(i % 2 == 0){
				a = i + 3;
				b = i + 2;
			}else{
				a = i + 1;
				b = i + 2;
			}
			
			if(a < n*2 && works.get(a) + x - d> visited.get(a)){
				visited.set(a, works.get(a) + x - d);
				queue.add(a);
			}
			if(b < n*2 && works.get(b) + x > visited.get(b)){
				visited.set(b, works.get(b) + x);
				queue.add(b);
			}
		}
		
		System.out.println(Collections.max(visited));
	}
}
0