結果

問題 No.1103 Directed Length Sum
ユーザー QCFiumQCFium
提出日時 2020-07-14 18:41:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 359 ms / 3,000 ms
コード長 1,602 bytes
コンパイル時間 1,746 ms
コンパイル使用メモリ 175,124 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-04-29 06:27:36
合計ジャッジ時間 5,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 123 ms
92,032 KB
testcase_03 AC 49 ms
59,776 KB
testcase_04 AC 174 ms
44,416 KB
testcase_05 AC 359 ms
74,496 KB
testcase_06 AC 110 ms
29,824 KB
testcase_07 AC 15 ms
9,600 KB
testcase_08 AC 23 ms
13,056 KB
testcase_09 AC 10 ms
7,168 KB
testcase_10 AC 37 ms
16,512 KB
testcase_11 AC 196 ms
48,256 KB
testcase_12 AC 101 ms
30,336 KB
testcase_13 AC 42 ms
17,024 KB
testcase_14 AC 8 ms
6,272 KB
testcase_15 AC 75 ms
24,448 KB
testcase_16 AC 228 ms
53,760 KB
testcase_17 AC 231 ms
55,936 KB
testcase_18 AC 36 ms
16,640 KB
testcase_19 AC 203 ms
49,152 KB
testcase_20 AC 11 ms
8,192 KB
testcase_21 AC 19 ms
12,032 KB
testcase_22 AC 167 ms
40,704 KB
testcase_23 AC 79 ms
25,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:39:15: warning: '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;
	
	static std::pair<int, int> que[1000000];
	int head = 0;
	int tail = 0;
	que[head++] = {root, 0};
	int64_t res = 0;
	while (head - tail) {
		auto i = que[tail++];
		res += (int64_t) i.second * (i.second + 1) / 2;
		for (size_t j = 0; j < hen[i.first].size(); j++)
			que[head + j] = {hen[i.first][j], i.second + 1};
		head += hen[i.first].size();
	}
	printf("%d\n", (int) (res % 1000000007));
	return 0;
}
0