結果

問題 No.1268 Fruit Rush 2
ユーザー publflpublfl
提出日時 2020-10-23 23:17:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 62,164 KB
実行使用メモリ 29,952 KB
最終ジャッジ日時 2024-07-21 13:09:21
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 133 ms
16,128 KB
testcase_17 AC 111 ms
15,104 KB
testcase_18 AC 119 ms
15,616 KB
testcase_19 AC 116 ms
15,488 KB
testcase_20 AC 115 ms
15,488 KB
testcase_21 AC 114 ms
15,232 KB
testcase_22 AC 133 ms
16,128 KB
testcase_23 AC 131 ms
16,256 KB
testcase_24 AC 117 ms
15,488 KB
testcase_25 AC 116 ms
15,360 KB
testcase_26 AC 201 ms
29,824 KB
testcase_27 AC 201 ms
29,696 KB
testcase_28 AC 200 ms
29,952 KB
testcase_29 AC 202 ms
29,824 KB
testcase_30 AC 202 ms
29,696 KB
testcase_31 AC 189 ms
17,280 KB
testcase_32 AC 190 ms
17,152 KB
testcase_33 AC 190 ms
17,280 KB
testcase_34 AC 146 ms
17,152 KB
testcase_35 AC 160 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <map>

std::map<long long int,int> M;
long long int x[200010];
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%lld",&x[i]);
	std::sort(x+1,x+a+1);
	
	long long int ans = 0;
	for(int i=a;i>=1;i--)
	{
		if(M.find(x[i]+1)!=M.end()) ans += M[x[i]+1];
		M[x[i]] = M[x[i]+2]+1;
	}
	printf("%lld",ans+a);
}
0