結果

問題 No.1868 Teleporting Cyanmond
ユーザー publflpublfl
提出日時 2022-03-11 21:25:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 35,440 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 01:24:57
合計ジャッジ時間 1,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 42 ms
5,376 KB
testcase_04 AC 32 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 21 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 AC 37 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 17 ms
5,376 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 24 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 34 ms
5,376 KB
testcase_20 AC 35 ms
5,376 KB
testcase_21 AC 35 ms
5,376 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 32 ms
5,376 KB
testcase_24 AC 31 ms
5,376 KB
testcase_25 AC 32 ms
5,376 KB
testcase_26 AC 33 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#define MAX 12345678

struct segTree{
	int value[400010];
	void setValue(int ind, int val, int l=1, int r=100000, int v=1)
	{
		if(l==r) value[v] = val;
		else
		{
			int h = (l+r)/2;
			if(ind<=h) setValue(ind,val,l,h,2*v);
			else setValue(ind,val,h+1,r,2*v+1);
			value[v] = value[2*v]<value[2*v+1]?value[2*v]:value[2*v+1];
		}
	}
	int getMin(int L, int R, int l=1, int r=100000, int v=1)
	{
		if(L<=l&&r<=R) return value[v];
		else if(r<L) return MAX;
		else if(R<l) return MAX;
		else
		{
			int h = (l+r)/2;
			int s1 = getMin(L,R,l,h,2*v);
			int s2 = getMin(L,R,h+1,r,2*v+1);
			return s1<s2?s1:s2;
		}
	}
}T;

int x[100010];
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<a;i++) scanf("%d",&x[i]);
	for(int i=a-1;i>=1;i--) T.setValue(i,T.getMin(i+1,x[i])+1);
	printf("%d",T.getMin(1,1));
}
0