結果

問題 No.1103 Directed Length Sum
ユーザー QCFiumQCFium
提出日時 2020-07-14 18:45:13
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 331 ms / 3,000 ms
コード長 1,560 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 175,356 KB
実行使用メモリ 85,028 KB
最終ジャッジ日時 2023-08-11 14:14:56
合計ジャッジ時間 6,513 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 128 ms
85,028 KB
testcase_03 AC 48 ms
57,092 KB
testcase_04 AC 169 ms
40,988 KB
testcase_05 AC 331 ms
68,608 KB
testcase_06 AC 82 ms
28,512 KB
testcase_07 AC 14 ms
8,832 KB
testcase_08 AC 20 ms
11,900 KB
testcase_09 AC 9 ms
6,692 KB
testcase_10 AC 33 ms
17,028 KB
testcase_11 AC 178 ms
43,456 KB
testcase_12 AC 85 ms
28,796 KB
testcase_13 AC 33 ms
17,352 KB
testcase_14 AC 7 ms
5,864 KB
testcase_15 AC 56 ms
22,512 KB
testcase_16 AC 196 ms
49,552 KB
testcase_17 AC 216 ms
51,512 KB
testcase_18 AC 32 ms
16,892 KB
testcase_19 AC 178 ms
46,556 KB
testcase_20 AC 10 ms
7,444 KB
testcase_21 AC 17 ms
11,148 KB
testcase_22 AC 139 ms
38,340 KB
testcase_23 AC 67 ms
23,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘int main()’ 内:
main.cpp:39:15: 警告: ‘void* memset(void*, int, size_t)’ specified size between 18446744071562068017 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
   39 |         memset(used, 0, sizeof(used));
      |         ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

struct FastIO {
	char buf[20000000];
	char *ptr = buf;
	void read() {
		int size;
		size = fread(buf, 1, sizeof(buf) - 1, stdin);
		buf[size] = '\0';
		ptr = buf;
	}
	FastIO () {
		read();
	}
	void inc() {
		ptr++;
		// if (++ptr == buf + sizeof(buf) || !*ptr) read();
	}
	template<typename Integer> Integer read() {
		bool neg = false;
		Integer res = 0;
		while ((*ptr < '0' || *ptr > '9') && *ptr != '-') inc();
		if (*ptr == '-') neg = true, inc();
		while (*ptr >= '0' && *ptr <= '9') res = res * 10 + *ptr - '0', inc();
		return neg ? -res : res;
	}
} fastio;
#define ri fastio.read<int>
#define rs64 fastio.read<int64_t>


std::vector<std::vector<int> > hen;

int main() {
	int n = ri();
	int degree[n];
	memset(degree, 0, sizeof(degree));
	bool used[n];
	memset(used, 0, sizeof(used));
	std::pair<int, int> hens[n - 1];
	for (int i = 0; i + 1 < n; i++) {
		hens[i].first = ri() - 1;
		hens[i].second = ri() - 1;
		degree[hens[i].first]++;
		used[hens[i].second] = true;
	}
	
	int root = std::find(used, used + n, 0) - used;
	hen.resize(n);
	for (int i = 0; i < n; i++) hen[i].resize(degree[i]);
	for (auto i : hens) hen[i.first][--degree[i.first]] = i.second;
	
	int64_t res = 0;
	std::vector<int> cur, next;
	cur.reserve(n);
	next.reserve(n);
	cur.push_back(root);
	for (int i = 0; cur.size(); i++) {
		res += (int64_t) i * (i + 1) / 2 * cur.size();
		next.clear();
		for (auto j : cur) next.insert(next.end(), hen[j].begin(), hen[j].end());
		std::swap(cur, next);
	}
	printf("%d\n", (int) (res % 1000000007));
	return 0;
}
0