結果

問題 No.654 Air E869120
ユーザー kaikeykaikey
提出日時 2020-06-02 18:26:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 3,341 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 192,248 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-05-03 08:10:39
合計ジャッジ時間 5,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
65,920 KB
testcase_01 AC 36 ms
65,920 KB
testcase_02 AC 34 ms
65,992 KB
testcase_03 AC 33 ms
66,048 KB
testcase_04 AC 37 ms
66,116 KB
testcase_05 AC 36 ms
65,920 KB
testcase_06 AC 39 ms
66,048 KB
testcase_07 AC 52 ms
66,048 KB
testcase_08 AC 37 ms
65,920 KB
testcase_09 AC 37 ms
66,048 KB
testcase_10 AC 121 ms
66,244 KB
testcase_11 AC 117 ms
66,176 KB
testcase_12 AC 114 ms
66,048 KB
testcase_13 AC 125 ms
66,048 KB
testcase_14 AC 114 ms
66,048 KB
testcase_15 AC 110 ms
66,048 KB
testcase_16 AC 103 ms
66,504 KB
testcase_17 AC 111 ms
66,372 KB
testcase_18 AC 100 ms
66,500 KB
testcase_19 AC 107 ms
66,500 KB
testcase_20 AC 53 ms
66,432 KB
testcase_21 AC 57 ms
66,368 KB
testcase_22 AC 42 ms
66,432 KB
testcase_23 AC 49 ms
66,560 KB
testcase_24 AC 58 ms
66,560 KB
testcase_25 AC 39 ms
66,500 KB
testcase_26 AC 44 ms
66,496 KB
testcase_27 AC 36 ms
66,496 KB
testcase_28 AC 43 ms
66,372 KB
testcase_29 AC 37 ms
66,432 KB
testcase_30 AC 30 ms
58,752 KB
testcase_31 AC 43 ms
58,624 KB
testcase_32 AC 29 ms
58,624 KB
testcase_33 AC 43 ms
58,624 KB
testcase_34 AC 31 ms
58,820 KB
testcase_35 AC 48 ms
65,920 KB
testcase_36 AC 36 ms
65,920 KB
testcase_37 AC 35 ms
65,920 KB
testcase_38 AC 28 ms
58,308 KB
testcase_39 AC 50 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long int lint;
typedef pair<lint, lint> plint;
typedef pair<double long, double long> pld;
#define Alint(x) (x).begin(), (x).end()
#define SZ(x) ((lint)(x).size())
#define POW2(n) (1ll << (n))
#define FOR(i, begin, end) for(lint i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(lint i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
template<typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2>& l, const pair<T1, T2>& r) { return make_pair(l.first + r.first, l.second + r.second); }
template<typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2>& l, const pair<T1, T2>& r) { return make_pair(l.first - r.first, l.second - r.second); }
const lint MOD = 998244353, INF = 1e18	;

struct edge { lint to, cap, rev; };

vector<edge> Graph[2000010];
int level[2000010];
int iter[2000010];
void add_edge(lint from, lint to, lint cap) {
	Graph[from].push_back({ to, cap, SZ(Graph[to]) });
	Graph[to].push_back({ from, 0, SZ(Graph[from]) - 1 });
}
void bfs(lint s) {
	memset(level, -1, sizeof(level));
	queue<lint> que;
	que.push(s);
	level[s] = 0;
	while (!que.empty()) {
		lint v = que.front(); que.pop();
		REP(i, SZ(Graph[v])) {
			edge& e = Graph[v][i];
			if (e.cap > 0 && level[e.to] < 0) {
				level[e.to] = level[v] + 1;
				que.push(e.to);
			}
		}
	}
}

lint dfs(lint v, lint t, lint f) {
	if (v == t) return f;
	for (int& i = iter[v]; i < SZ(Graph[v]); i++) {
		edge& e = Graph[v][i];
		if (e.cap > 0 && level[v] < level[e.to]) {
			lint d = dfs(e.to, t, min(f, e.cap));
			if (d > 0) {
				e.cap -= d;
				Graph[e.to][e.rev].cap += d;
				return d;
			}
		}
	}
	return 0;
}

lint max_flow(lint s, lint t) {
	lint flow = 0;
	for (;;) {
		bfs(s);
		if (level[t] < 0) return flow;
		memset(iter, 0, sizeof(iter));
		lint f;
		while ((f = dfs(s, t, INF)) > 0) {
			flow += f;
		}
	}
}


lint N, M, D;
lint u[1000], v[1000], p[1000], q[1000], w[1000];
map<lint, lint> toidx_t;
set<lint> st;

vector<lint> t_point[1001];
const lint MAX = pow(10, 9);
int main() {
	cin.tie(0); ios_base::sync_with_stdio(false);
	cin >> N >> M >> D;
	st.insert(0); st.insert(MAX);
	REP(i, N) {
		t_point[i].push_back(0);
	}
	REP(i, M) {
		cin >> u[i] >> v[i] >> p[i] >> q[i] >> w[i]; u[i]--; v[i]--;
		st.insert(p[i]);
		st.insert(min(q[i] + D, MAX));
		t_point[u[i]].push_back(p[i]);
		t_point[v[i]].push_back(min(q[i] + D, MAX));
	}
	REP(i, N) {
		t_point[i].push_back(MAX);
		sort(t_point[i].begin(), t_point[i].end());
	}
	//座圧
	lint idx = 0;
	for (auto itr : st) {
		toidx_t[itr] = idx;
		idx++;
	}

	//二次元情報(街番号(i)、時間(t))を一次元情報に圧縮する
	// Info = i*idx + f(t)
	REP(i, M) {
		add_edge(u[i] * idx + toidx_t[p[i]], v[i] * idx + toidx_t[min(q[i] + D, MAX)], w[i]);
	}
	//同じ街に対して時間に沿った有向辺を張る
	REP(i, N) {
		REP(j, SZ(t_point[i]) - 1) {
			if (t_point[i][j] == t_point[i][j + 1]) continue;
			add_edge(i * idx + toidx_t[t_point[i][j]], i * idx + toidx_t[t_point[i][j + 1]], INF);
		}
	}

	cout << max_flow(0, N * idx - 1);
}
0