結果

問題 No.1709 Indistinguishable by MEX
ユーザー publflpublfl
提出日時 2021-10-15 21:56:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 59,892 KB
実行使用メモリ 8,300 KB
最終ジャッジ日時 2024-09-17 17:28:07
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 72 ms
6,980 KB
testcase_09 AC 54 ms
7,276 KB
testcase_10 AC 55 ms
6,944 KB
testcase_11 AC 40 ms
6,940 KB
testcase_12 AC 43 ms
6,944 KB
testcase_13 AC 60 ms
6,940 KB
testcase_14 AC 56 ms
6,944 KB
testcase_15 AC 57 ms
7,036 KB
testcase_16 AC 75 ms
7,348 KB
testcase_17 AC 67 ms
7,260 KB
testcase_18 AC 83 ms
7,404 KB
testcase_19 AC 78 ms
7,512 KB
testcase_20 AC 87 ms
8,300 KB
testcase_21 AC 78 ms
7,300 KB
testcase_22 AC 78 ms
7,380 KB
testcase_23 AC 53 ms
7,784 KB
testcase_24 AC 53 ms
7,736 KB
testcase_25 AC 54 ms
7,508 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 22 ms
6,940 KB
testcase_28 AC 19 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <algorithm>
#define MOD 998244353

struct segTree{
	int value[800010];
	void setValue(int ind, int val, int l=1, int r=200000, 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];
		}
	}
	
	int getSum(int L, int R, int l=1, int r=200000, int v=1)
	{
		if(L<=l&&r<=R) return value[v];
		else if(r<L) return 0;
		else if(R<l) return 0;
		else
		{
			int h = (l+r)/2;
			int s1 = getSum(L,R,l,h,2*v);
			int s2 = getSum(L,R,h+1,r,2*v+1);
			return s1+s2;
		}
	}
}T;

int x[200010];
std::vector< std::pair<int,int> > V;
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	
	for(int i=1;i<=a;i++) V.push_back(std::make_pair(x[i],i));
	std::sort(V.begin(),V.end());
	int L = a+1, R = 0;
	
	long long int ans = 1;
	for(int i=0;i<V.size();i++)
	{
		int t = V[i].second;
		
		if(L<=t&&t<=R)
		{
			int val = (R-L+1) - T.getSum(L,R);
			ans *= val, ans %= MOD;
		}
		L = L<t?L:t;
		R = R>t?R:t;
		T.setValue(t,1);
	}
	
	printf("%lld",ans);
	
}
0