結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー ygussanyygussany
提出日時 2022-01-28 22:26:23
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-09 15:39:50
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 21 ms
6,940 KB
testcase_05 AC 20 ms
6,940 KB
testcase_06 AC 20 ms
6,944 KB
testcase_07 AC 56 ms
6,940 KB
testcase_08 AC 60 ms
6,944 KB
testcase_09 AC 59 ms
6,944 KB
testcase_10 AC 58 ms
6,940 KB
testcase_11 AC 53 ms
6,944 KB
testcase_12 AC 60 ms
6,944 KB
testcase_13 AC 55 ms
6,940 KB
testcase_14 AC 56 ms
6,940 KB
testcase_15 AC 57 ms
6,940 KB
testcase_16 AC 59 ms
6,944 KB
testcase_17 AC 67 ms
6,940 KB
testcase_18 AC 64 ms
6,940 KB
testcase_19 AC 58 ms
6,940 KB
testcase_20 AC 60 ms
6,940 KB
testcase_21 AC 59 ms
6,944 KB
testcase_22 AC 59 ms
6,944 KB
testcase_23 AC 58 ms
6,944 KB
testcase_24 AC 57 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void chmax(int* a, int b)
{
	if (*a < b) *a = b;
}

int solve(int N, int P[])
{
	int i;
	static int P_inv[500001];
	for (i = 1; i <= N; i++) P_inv[P[i]] = i;
	
	int j, ans = 1, tmp = 1;
	for (i = 1; i <= N; i++) {
		j = P_inv[i];
		if (j == 1) {
			if (P[j] > P[j+1]) tmp--;
			else tmp++;
		} else if (j == N) {
			if (P[j-1] < P[j]) tmp--;
			else tmp++;
		} else {
			if (P[j-1] < P[j] && P[j] > P[j+1]) tmp -= 2;
			else if (P[j-1] > P[j] && P[j] < P[j+1]) tmp += 2;
		}
		chmax(&ans, tmp);
	}
	return ans;
}

int main()
{
	int i, t, T, N, P[500001];
	scanf("%d", &T);
	for (t = 1; t <= T; t++) {
		scanf("%d", &N);
		for (i = 1; i <= N; i++) scanf("%d", &(P[i]));
		printf("%d\n", solve(N, P));
	}
	fflush(stdout);
	return 0;
}
0