結果
問題 | No.1103 Directed Length Sum |
ユーザー | QCFium |
提出日時 | 2020-07-14 19:01:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 362 ms / 3,000 ms |
コード長 | 1,834 bytes |
コンパイル時間 | 1,659 ms |
コンパイル使用メモリ | 174,480 KB |
実行使用メモリ | 84,480 KB |
最終ジャッジ日時 | 2024-04-29 07:08:14 |
合計ジャッジ時間 | 6,094 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 139 ms
84,480 KB |
testcase_03 | AC | 68 ms
56,064 KB |
testcase_04 | AC | 186 ms
40,576 KB |
testcase_05 | AC | 362 ms
67,968 KB |
testcase_06 | AC | 100 ms
27,648 KB |
testcase_07 | AC | 14 ms
9,088 KB |
testcase_08 | AC | 22 ms
12,160 KB |
testcase_09 | AC | 10 ms
7,040 KB |
testcase_10 | AC | 37 ms
15,488 KB |
testcase_11 | AC | 213 ms
43,904 KB |
testcase_12 | AC | 104 ms
27,776 KB |
testcase_13 | AC | 38 ms
15,744 KB |
testcase_14 | AC | 7 ms
6,016 KB |
testcase_15 | AC | 71 ms
22,400 KB |
testcase_16 | AC | 237 ms
49,024 KB |
testcase_17 | AC | 245 ms
50,944 KB |
testcase_18 | AC | 34 ms
15,488 KB |
testcase_19 | AC | 212 ms
44,928 KB |
testcase_20 | AC | 12 ms
7,936 KB |
testcase_21 | AC | 20 ms
11,392 KB |
testcase_22 | AC | 163 ms
37,504 KB |
testcase_23 | AC | 83 ms
23,808 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:36:29: warning: argument to variable-length array is too large [-Wvla-larger-than=] 36 | std::pair<int, int> hens[n - 1]; | ^~~~ main.cpp:36:29: note: limit is 9223372036854775807 bytes, but argument is 18446744073709551608 main.cpp:46:15: warning: 'void* memset(void*, int, size_t)' specified size between 18446744071562068017 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] 46 | memset(used, 0, sizeof(used)); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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(); 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; } clock_t r0 = clock(); int degree[n]; memset(degree, 0, sizeof(degree)); bool used[n]; memset(used, 0, sizeof(used)); for (int i = 0; i + 1 < n; i++) { 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; static int que[2][1000000]; static int head[2]; que[0][head[0]++] = root; for (int i = 0; head[i & 1]; i++) { res += (int64_t) i * (i + 1) / 2 * head[i & 1]; int next = (i ^ 1) & 1; head[next] = 0; for (int j = 0; j < head[i & 1]; j++) { memcpy(que[next] + head[next], &hen[que[i & 1][j]][0], sizeof(int) * hen[que[i & 1][j]].size()); head[next] += hen[que[i & 1][j]].size(); } } printf("%d\n", (int) (res % 1000000007)); clock_t r1 = clock(); fprintf(stderr, "took %f ms\n", (double)(r1 - r0) / CLOCKS_PER_SEC * 1000); return 0; }