結果
| 問題 |
No.468 役に立つ競技プログラミング実践編
|
| コンテスト | |
| ユーザー |
akusyounin2412
|
| 提出日時 | 2019-03-25 19:39:26 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 3,104 bytes |
| コンパイル時間 | 1,714 ms |
| コンパイル使用メモリ | 137,964 KB |
| 実行使用メモリ | 33,436 KB |
| 最終ジャッジ日時 | 2024-10-09 04:37:28 |
| 合計ジャッジ時間 | 7,454 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 31 |
| other | AC * 6 |
ソースコード
# include <iostream>
# include <algorithm>
#include <array>
# include <cassert>
#include <cctype>
#include <climits>
#include <numeric>
# include <vector>
# include <string>
# include <set>
# include <map>
# include <cmath>
# include <iomanip>
# include <functional>
# include <tuple>
# include <utility>
# include <stack>
# include <queue>
# include <list>
# include <bitset>
# include <complex>
# include <chrono>
# include <random>
# include <limits.h>
# include <unordered_map>
# include <unordered_set>
# include <deque>
# include <cstdio>
# include <cstring>
#include <stdio.h>
#include<time.h>
#include <stdlib.h>
#include <cstdint>
#include <cfenv>
#include<fstream>
//#include <bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
const long long MOD = 1000000000 + 7;//1000000000 + 7 998244353 924844033 1000000000 + 9;
constexpr long long INF = 1LL << 60;//numeric_limits<LL>::max();
const double PI = acos(-1);
#define fir first
#define sec second
#define thi third
#define debug(x) cerr<<#x<<": "<<x<<'\n'
typedef pair<LL, LL> Pll;
typedef pair<double, double> Dll;
typedef pair<LL, pair<LL, LL>> Ppll;
typedef pair<LL, pair<LL, bitset<100001>>> Pbll;
typedef pair<LL, pair<LL, vector<LL>>> Pvll;
typedef pair<LL, LL> Vec2;
struct Tll { LL first, second, third; };
struct Fll { LL first, second, third, fourth; };
typedef pair<LL, Tll> Ptll;
#define rep(i,rept) for(LL i=0;i<rept;i++)
#define Rrep(i,mf) for(LL i=mf-1;i>=0;i--)
void YN(bool f) {
if (f)
cout << "YES" << endl;
else
cout << "NO" << endl;
}
void yn(bool f) {
if (f)
cout << "Yes" << endl;
else
cout << "No" << endl;
}
struct Edge { LL to, cost; };
struct edge {
LL from, to, cost;
};
vector<vector<Edge>>g,rev;
vector<edge>ed;
vector<Pll>pv;
set<LL>st;
map<Pll, LL>ma;
int di[4][2] = { { 0,1 },{ 1,0 },{ 0,-1 },{ -1,0 } };
string str, ss;
bool f[200000];
LL n, m, s, t, h, w, k, q, p, ans, sum, cnt,dp[200000];
vector<int> tsort(vector<vector<Edge>>g) {
int n = g.size();
enum { YET, VISITED, DONE };
vector<int> res, flg(g.size(), YET);
static const function<bool(int)> dfs = [&](int v) {
flg[v] = VISITED;
for (auto &e : g[v]) {
int w = e.to;
if (flg[w] != DONE && (flg[w] == VISITED || !dfs(w))) return false;
}
flg[v] = DONE;
res.push_back(v);
return true;
};
for (int i = 0; i < n; ++i)
if (flg[i] == YET && !dfs(i)) return{};
reverse(res.begin(), res.end());
return res;
}
int main() {
cin >> n >> m;
g.resize(n);
rev.resize(n);
rep(i, m) {
LL x, y, z;
cin >> x >> y >> z;
g[x].push_back(Edge{ y,z });
rev[y].push_back(Edge{ x,z });
}
vector<int>v = tsort(g);
rep(i, v.size()) {
int cur = v[i];
rep(j, g[cur].size()) {
int nex = g[cur][j].to, cost = g[cur][j].cost;
if (dp[nex] < dp[cur] + cost) {
dp[nex] = dp[cur] + cost;
}
}
}
Rrep(i, v.size()) {
int cur = v[i];
rep(j, rev[cur].size()) {
int nex = rev[cur][j].to, cost = rev[cur][j].cost;
if (dp[nex]+ cost != dp[cur] ) {
f[nex] = 1;
}
}
}
rep(i, n)if (f[i])cnt++;
cout << dp[n - 1] << " " << cnt << "/" << n << endl;
return 0;
}
akusyounin2412