結果

問題 No.1709 Indistinguishable by MEX
ユーザー kotatsugamekotatsugame
提出日時 2021-10-18 23:26:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 66,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 20:13:27
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 49 ms
5,376 KB
testcase_09 AC 39 ms
5,376 KB
testcase_10 AC 37 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 45 ms
5,376 KB
testcase_16 AC 61 ms
5,376 KB
testcase_17 AC 55 ms
5,376 KB
testcase_18 AC 60 ms
5,376 KB
testcase_19 AC 61 ms
5,376 KB
testcase_20 AC 62 ms
5,376 KB
testcase_21 AC 59 ms
5,376 KB
testcase_22 AC 59 ms
5,376 KB
testcase_23 AC 60 ms
5,376 KB
testcase_24 AC 60 ms
5,376 KB
testcase_25 AC 60 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 31 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
int P[2<<17],inv[2<<17];
bool vis[2<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>P[i];
		inv[P[i]]=i;
	}
	int pc=1;
	int l=inv[0],r=inv[0];
	int rest=0;
	mint ans=1;
	while(pc<N)
	{
		int id=inv[pc];
		while(id<l)
		{
			l--;
			rest++;
			vis[P[l]]=true;
		}
		while(r<id)
		{
			r++;
			rest++;
			vis[P[r]]=true;
		}
		pc++;
		rest--;
		while(pc<N&&vis[pc])
		{
			pc++;
			ans=ans*rest--;
		}
	}
	while(rest)ans*=rest--;
	cout<<ans.val()<<endl;
}
0