結果

問題 No.2638 Initial fare
ユーザー zawakasuzawakasu
提出日時 2024-02-19 22:35:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,324 bytes
コンパイル時間 2,985 ms
コンパイル使用メモリ 260,692 KB
実行使用メモリ 82,388 KB
最終ジャッジ日時 2024-02-19 22:35:16
合計ジャッジ時間 7,277 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
6,676 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>




namespace zawa {

using i16 = std::int16_t;
using i32 = std::int32_t;
using i64 = std::int64_t;
using i128 = __int128_t;

using u8 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;

using usize = std::size_t;

} // namespace zawa


namespace zawa {

void SetFastIO() {
    std::cin.tie(nullptr)->sync_with_stdio(false);
}

void SetPrecision(u32 dig) {
    std::cout << std::fixed << std::setprecision(dig);
}

} // namespace zawa
using namespace zawa;

int main() {
    SetFastIO();

    int n; std::cin >> n;
    std::vector g(n, std::vector<int>{});
    for (int _{} ; _ < n - 1 ; _++) {
        int u, v; std::cin >> u >> v;
        u--; v--;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }

    std::map<std::tuple<int, int, int>, int> dp;
    auto rec{[&](auto rec, int v, int p, int d) -> int {
        std::tuple<int, int, int> tup{ v, p, d };
        if (dp.contains(tup)) return dp[tup];
        dp[tup] = 1;
        if (d == 0) return dp[tup];
        for (auto x : g[v]) if (x != p) {
            dp[tup] += rec(rec, x, v, d - 1);
        }
        return dp[tup];
    }};
    long long ans{};
    for (int v{} ; v < n ; v++) {
        ans += rec(rec, v, -1, 3) - 1;
    }
    ans /= 2;
    std::cout << ans << '\n';
}
0