結果

問題 No.30 たこやき工場
コンテスト
ユーザー hogeover30
提出日時 2015-02-26 03:05:09
言語 C++11(old_compat)
(gcc 12.4.0 + boost 1.89.0)
コンパイル:
g++-12 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -include bits/stdc++.h -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 876 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,413 ms
コンパイル使用メモリ 175,192 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2026-03-08 16:01:46
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;

ll cost[110][110];
vector<int> from[110], to[110];
vector<ll> memo[110];

vector<ll> func(int k, int n)
{
    if (memo[k].size())
        return memo[k];

    vector<ll> res(n);
    if (from[k].empty()) {
        res[k]=1;
        return res;
    }
    for(int v: from[k]) {
        auto t=func(v, n);
        for(int i=0;i<n;++i)
            res[i]+=cost[v][k]*t[i];
    }
    return memo[k]=res;
}

int main()
{
    int n, m;
    while (cin>>n>>m) {
        for(int i=0;i<n;++i) { from[i].clear(); to[i].clear(); memo[i].clear(); }
        while (m--) {
            int a, c, b; cin>>a>>c>>b;
            cost[--a][--b]=c;
            from[b].push_back(a);
            to[a].push_back(b);
        }
        auto res=func(n-1, n);
        for(int i=0;i<n-1;++i) cout<<res[i]<<endl;
    }
}
0