結果

問題 No.33 アメーバがたくさん
ユーザー hotpepsihotpepsi
提出日時 2015-05-15 01:46:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 68,952 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 17:46:58
合計ジャッジ時間 998 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <sstream>
#include <set>

using namespace std;

typedef long long LL;
typedef set<LL> LLSet;

int main(int argc, char *argv[])
{
	LL N, D, T;
	string s;
	getline(cin, s);
	stringstream sa(s);
	sa >> N >> D >> T;
	getline(cin, s);
	stringstream sb(s);
	LLSet z;
	LL ans = 0;
	for (LL i = 0; i < N; ++i) {
		LL x;
		sb >> x;
		LL a = x - D * T, b = x + D * T;
		LL c = ((a % D) + D) % D;
		for (LL y : z) {
			LL d = y - D * T, e = y + D * T;
			LL f = ((d % D) + D) % D;
			if (c == f) {
				if (a >= d && a <= e) {
					a = e + D;
				}
				if (b >= d && b <= e) {
					b = d - D;
				}
			}
		}
		z.insert(x);
		if (b >= a) {
			ans += (b - a + D) / D;
		}
	}
	cout << ans << endl;
	return 0;
}
0