結果

問題 No.1834 1D Gravity
ユーザー rianoriano
提出日時 2022-01-23 16:26:10
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 844 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-07 04:40:49
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,756 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 42 ms
6,944 KB
testcase_14 AC 39 ms
6,944 KB
testcase_15 AC 48 ms
6,940 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

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

int main()
{
	int i, N, m[200001], p[200001];
	scanf("%d", &N);
	for (i = 1; i <= N; i++) {
		scanf("%d", &(m[i]));
		p[m[i]] = i;
	}
	
	int j, k, max[200001], len, num;
	for (i = 1; i <= N; i++) max[i] = m[i];
	for (k = 1; k <= 5000; k++) {
		for (i = 1; i <= N; i++) {
			if (p[i] == 1) p[i] = 2;
			else if (p[i] == N) p[i] = N - 1;
			else if (max[p[i]-1] > max[p[i]+1]) p[i]--;
			else p[i]++;
		}
		
		for (i = 1; i <= N; i++) max[i] = 0;
		for (i = 1; i <= N; i++) chmax(&(max[p[i]]), i);
		
		for (i = 1, num = 0, len = 0; i <= N; i = j) {
			if (max[i] == 0) {
				j = i + 1;
				continue;
			}
			num++;
			for (j = i + 1; j <= N && max[j] != 0; j++);
			chmax(&len, j - i);
		}
		if (len == 2) break;
	}
	printf("%d %d\n", k, num);
	fflush(stdout);
	return 0;
}
0