結果

問題 No.1660 Matrix Exponentiation
ユーザー kabipoyokabipoyo
提出日時 2022-01-20 17:41:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 2,218 bytes
コンパイル時間 5,452 ms
コンパイル使用メモリ 278,808 KB
実行使用メモリ 18,208 KB
最終ジャッジ日時 2024-11-24 00:11:49
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 23 ms
12,872 KB
testcase_10 AC 23 ms
12,872 KB
testcase_11 AC 9 ms
10,312 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 97 ms
12,924 KB
testcase_20 AC 66 ms
12,204 KB
testcase_21 AC 95 ms
10,508 KB
testcase_22 AC 16 ms
8,888 KB
testcase_23 AC 40 ms
10,104 KB
testcase_24 AC 137 ms
16,152 KB
testcase_25 AC 91 ms
18,208 KB
testcase_26 AC 135 ms
16,156 KB
testcase_27 AC 75 ms
15,104 KB
testcase_28 AC 104 ms
15,384 KB
testcase_29 AC 100 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;
#define mp make_pair
using plint = pair<lint, lint>;
vector<vector<pair<lint, lint>>> G;
vector<vector<pair<lint, lint>>> R;
void make_round_graph(lint N, lint M) {
	lint x, y;
	G.resize(N), R.resize(N);
	rep(i, M) {
		cin >> x >> y;
		x--, y--;
		G[x].push_back(make_pair(1, y));
		R[y].push_back(make_pair(1, x));
	}
}

void dijkstra(vector<lint> &dist) {
	lint a=0, b=0, x, y, N = G.size();
	dist.resize(N, -1);
	priority_queue<plint, vector<plint>, greater<plint>> PQ;
	rep(i, N) {
		if (R[i].size() == 0) {
			dist[i] = 0;
			PQ.push(make_pair(0, i));
		}
	}
	while (!PQ.empty()) {
		tie(x, a) = PQ.top(); PQ.pop();
		if (dist[a] > x) continue;
		for (auto p : G[a]) {
			tie(y, b) = p;
			if (chmax(dist[b], x+y)) PQ.push(make_pair(x+y, b));
		}
	}
}
vi topo_sort() {
	vi res;
	lint N = G.size();
	vi v(N);
	rep(i, N) { for (auto e : G[i]) v[e.second]++; }
	queue<int> Q;
	rep(i, N) { if (!v[i]) Q.push(i); }
	while (!Q.empty()) {
		int x = Q.front(); Q.pop();
		res.push_back(x);
		for (auto e : G[x]) {
			v[e.second]--;
			if (!v[e.second]) Q.push(e.second);
		}
	}
	return res;
}

int main() {
	lint N, K;
	cin >> N >> K;
	make_round_graph(N, K);

	lint a=0, b=0, c=0, x, y, z;
	vi v, w;
	w = topo_sort();
	if (w.size() < N) drop(-1);
	dijkstra(v);
	rep(i, N) {
		chmax(a, v[i]);
	}
	std::cout << a+1 << '\n';
}
0