結果

問題 No.1512 作文
ユーザー pengin_2000pengin_2000
提出日時 2022-09-11 14:15:53
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,590 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:15:56
合計ジャッジ時間 3,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 0 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 0 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 0 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 51 ms
5,376 KB
testcase_41 AC 35 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
char ss[200005];
char s[200005];
int st[200005];
int h[200005], l;
int comp_h(int a, int b)
{
	if (s[st[h[a] + 1] - 1] > s[st[h[b] + 1] - 1])
		return 1;
	else
		return -1;
}
void swap_h(int a, int b)
{
	int f = h[a];
	h[a] = h[b];
	h[b] = f;
	return;
}
void push(int ne)
{
	h[l] = ne;
	int p = l;
	l++;
	for (; p > 0; p = (p - 1) / 2)
		if (comp_h((p - 1) / 2, p) > 0)
			swap_h((p - 1) / 2, p);
	return;
}
int pop()
{
	l--;
	swap_h(0, l);
	int p = 0;
	for (;;)
	{
		if (2 * p + 2 < l)
		{
			if (comp_h(2 * p + 1, 2 * p + 2) > 0)
			{
				if (comp_h(p, 2 * p + 2) > 0)
					swap_h(p, 2 * p + 2);
				p = 2 * p + 2;
			}
			else
			{
				if (comp_h(p, 2 * p + 1) > 0)
					swap_h(p, 2 * p + 1);
				p = 2 * p + 1;
			}
		}
		else if (2 * p + 1 < l)
		{
			if (comp_h(p, 2 * p + 1) > 0)
				swap_h(p, 2 * p + 1);
			p = 2 * p + 1;
		}
		else
			break;
	}
	return h[l];
}
int dp[30];
int main()
{
	int n;
	scanf("%d", &n);
	int i, j, k;
	st[0] = 0;
	for (i = 0; i < n; i++)
	{
		scanf("%s", ss);
		for (j = 0; ss[j] != '\0'; j++)
			s[st[i] + j] = ss[j];
		st[i + 1] = st[i] + j;
	}
	l = 0;
	for (i = 0; i < n; i++)
		push(i);
	for (i = 0; i < 30; i++)
		dp[i] = 0;
	for (; l > 0;)
	{
		i = pop();
		k = 0;
		for (j = st[i]; j < st[i + 1] - 1; j++)
			if (s[j] > s[j + 1])
				k++;
		if (k > 0)
			continue;
		k = s[st[i + 1] - 1] - 'a';
		for (j = s[st[i]] - 'a'; j >= 0; j--)
				if (dp[k] < dp[j] + st[i + 1] - st[i])
					dp[k] = dp[j] + st[i + 1] - st[i];
	}
	int ans = 0;
	for (i = 0; i < 30; i++)
		if (ans < dp[i])
			ans = dp[i];
	printf("%d\n", ans);
	return 0;
}
0