結果

問題 No.59 鉄道の旅
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-20 02:53:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 659 ms / 5,000 ms
コード長 1,679 bytes
コンパイル時間 3,805 ms
コンパイル使用メモリ 80,764 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-12-24 21:50:02
合計ジャッジ時間 9,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
48,088 KB
testcase_01 AC 129 ms
49,052 KB
testcase_02 AC 132 ms
48,888 KB
testcase_03 AC 136 ms
49,100 KB
testcase_04 AC 659 ms
55,912 KB
testcase_05 AC 149 ms
49,396 KB
testcase_06 AC 151 ms
49,384 KB
testcase_07 AC 145 ms
49,204 KB
testcase_08 AC 274 ms
54,792 KB
testcase_09 AC 297 ms
55,116 KB
testcase_10 AC 298 ms
55,284 KB
testcase_11 AC 266 ms
54,848 KB
testcase_12 AC 472 ms
55,380 KB
testcase_13 AC 610 ms
56,160 KB
testcase_14 AC 538 ms
55,984 KB
testcase_15 AC 126 ms
48,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0059 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static final int SIZE = 1000001;

	static void solve() {
		int n = in.nextInt();
		int k = in.nextInt();
		FenwickTree ft = new FenwickTree(SIZE);

		while (n-- > 0) {
			int w = in.nextInt();

			if (w > 0) {
				if (ft.get(SIZE-1) - ft.get(w-1) < k) ft.add(w,SIZE,1);
			} else {
				w = -w;
				if (ft.get(w) - ft.get(w-1) > 0) ft.add(w,SIZE,-1);
			}
			//trace(ft);
		}
		//trace(ft);
		out.println(ft.get(SIZE-1));
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}

class FenwickTree {

	public static final long MOD = 1_000_000_007;
	public final int length;
	private long[] bit;

	public FenwickTree(int length) {
		this.length = length;
		this.bit = new long[length+2];
	}

	public void add(int begin, int end, long n) {
		add(begin, n);
		add(end, (MOD - n)%MOD);
	}

	private void add(int idx, long n) {
		idx++;
		while (idx <= length) {
			bit[idx] = (bit[idx] + n)%MOD;
			idx += idx&-idx;
		}
	}

	public long get(int idx) {
		idx++;
		long ret = 0;
		while (idx > 0) {
			ret = (ret + bit[idx])%MOD;
			idx -= idx&-idx;
		}
		return ret;
	}

	public String toString() {
		long[] val = new long[length];
		for (int i=0; i<length; i++) val[i] = get(i);
		return Arrays.toString(val);
	}
}
0