QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#660432#9319. Bull FarmMrDotXinTL 138ms19916kbC++203.9kb2024-10-20 11:09:012024-10-20 11:09:03

Judging History

你现在查看的是最新测评结果

  • [2024-10-20 11:09:03]
  • 评测
  • 测评结果:TL
  • 用时:138ms
  • 内存:19916kb
  • [2024-10-20 11:09:01]
  • 提交

answer

#include <bits/stdc++.h>	

using ll  = long long;
using ull = unsigned long long;

using i64 = long long;
using ui64 = unsigned long long;

using pii = std::pair<int,int>; 
constexpr int mod = 1e9+7;

struct DefaultEdgeType { int to; };

template<typename E = DefaultEdgeType> struct Graph {
private:

	int n;
	std::vector<std::vector<E>> adj_;

public:
	Graph(int node_cnt) 
		: n(node_cnt), adj_(node_cnt)
	{}

	template<typename...Args>
	void to(int u, Args&&...args) {
		adj_[u].emplace_back(std::forward<Args>(args)...);
	}

	template<typename...Args>
	void connect(int u, int v, Args&&...args) {
		to(u, v, std::forward<Args>(args)...);
		to(v, u, std::forward<Args>(args)...);
	}	

	void connect(int u, int v) {
		to(u, v);
		to(v, u);
	}

	std::vector<E> & operator[](int u) {
		return adj_[u];
	}	

	const std::vector<E> & operator[](int u) const {
		return adj_[u];
	}

	int N() const {
		return n;
	}

	int size() const {
		return n;
	}
};

template<typename NT = int, typename E = DefaultEdgeType> struct GraphNt : public Graph<E> {
private :
	std::vector<NT> a_;
public : 
	GraphNt(int node_cnt) 
		: Graph<E>(node_cnt),
		a_(node_cnt)
	{}

	GraphNt(const std::vector<NT> & a) 
		: Graph<E>(a.size()),
			a_(a)
	{}	

	GraphNt(std::vector<NT> && a) 
		: Graph<E>(a.size()),
			a_(a)
	{}

	const NT & a(int u) const {
		return a_[u];
	} 	

	NT & a(int u) {
		return a_[u];
	} 
};

struct DSU {
	std::vector<int> f, sz;

	DSU() {};
	DSU(int n) {
		init(n);
	}

	void init(int n) {
		f.resize(n);
		std::iota(f.begin(), f.end(), 0);
		sz.assign(n, 1);
	}

	int find(int x) {
		while (f[x] != x) {
			x = f[x] = f[f[x]];
		}

		return x;
	}

	bool merge(int x, int y) {
		x = find(x);
		y = find(y);
		if (x == y) {
			return false;
		}

		if (sz[x] < sz[y]) {
			std::swap(x, y);
		}

		sz[x] += sz[y];
		f[y] = x;
		return true;

	}

	int size(int x) {
		return sz[find(x)];
	}

	bool same(int x, int y) {
		return find(x) == find(y);
	}
};

std::vector<int> decode(std::string & s) {
	int n = s.size() / 2;
	std::vector<int> v(n);
	for (int i = 0; i < n; i ++) {
		v[i] = (s[2 * i] - 48) * 50 + s[2 * i + 1] - 48;
	}

	return v;
}

struct Edge {
	int to;
	int w;
};

void solve() {
	int n, m, q; std::cin >> n >> m >> q;
	Graph<Edge> g(n);

	for (int i = 1; i <= m; i ++) {
		std::string s; std::cin >> s;
		std::vector<int> edges = decode(s);
		
		std::vector<int> cnt(n);
		
		int siz = 0;
		for (auto & v : edges) cnt[--v] ++;
		for (auto & v : cnt) siz += (v > 0);

		if (siz == n) {
			for (int j = 0; j < n; j ++) {
				g.connect(j, edges[j], i);
			}
		} else if (siz == n - 1) {
			int cnt0 = -1, cnt2 = -1;
			for (int j = 0; j < n; j ++) {
				if (cnt[j] == 0) cnt0 = j;
				if (cnt[j] == 2) cnt2 = j;
			}

			for (int j = 0; j < n; j ++) {
				if (edges[j] == cnt2) {
					g.to(j, cnt0, i);
				}
			}
		}
	}	


	std::priority_queue<std::pair<int,int>, std::vector<std::pair<int,int>>, std::greater<>> pq;
	std::vector<std::vector<int>> cost(n, std::vector<int>(n, m + 1));
	for (int i = 0; i < n; i ++) cost[i][i] = 0;
	for (int i = 0; i < n; i ++) {
		pq.emplace(0, i);
		while (!pq.empty()) {
			auto [ti, u] = pq.top(); pq.pop();
			if (cost[i][u] < ti) continue;
			for (auto [v, w] : g[u]) {
				if (cost[i][v] > std::max(ti, w)) {
					cost[i][v] = std::max(ti, w);

					pq.emplace(cost[i][v], v);
				}	
			}
		}
	}

	std::string res(q, '0');
	for (int i = 0; i < q; i ++) {
		std::string s; std::cin >> s;
		std::vector<int> queries = decode(s);
		if (cost[queries[0] - 1][queries[1] - 1] <= queries[2]) {
			res[i] ++;
		}
	}

	std::cout << res << '\n';
}

int main()
{
	
	std::ios::sync_with_stdio(false);
	std::cin.tie(0); std::cout.tie(0);		
		
	int t = 1; 
	std::cin >> t;
	
	while (t -- > 0) {
		solve();
	}

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3620kb

input:

2
5 2 4
0305040201
0404040404
030300
020500
050102
020501
6 2 4
030603010601
010203060504
030202
060402
050602
060401

output:

1011
0100

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

1
3 3 6
020202
030301
030201
020102
030203
010201
010303
020303
010202

output:

010101

result:

ok single line: '010101'

Test #3:

score: 0
Accepted
time: 48ms
memory: 3632kb

input:

200
10 10 5000
01060:04020305080709
0103070:060204050908
09070503080401060:02
050308010204090:0607
03010502040607080:09
03080109020504060:07
06050:09040302080107
07080305010409060:02
030809010:0204060507
0:060908070201050304
060700
090:03
09080:
070405
010703
0:0100
080601
030600
070206
0:0:09
08040...

output:

011110001101101111111111111111111101111111110111011110110110111011010111111111111111111101111111111110111111110111111111111101111111111110111111111111111111110001100111111111111111111111111011101111111111111111111111111111111111111111011011110100111110111111110111111100111111101110111111111101111110...

result:

ok 200 lines

Test #4:

score: 0
Accepted
time: 138ms
memory: 19916kb

input:

1
2000 1 1000000
M=:]A@8UAY7W2JJ4KEHIA[HSCQ1ENSC`JXR;F3PJ:_@41P9Z=9HR8P<<:DUXRR9^WOQFL?NZP6S@=J0^WE32=6;\U0?88]Q_RNPUMT6YU<4<S]H?:7OCQYOT4YAV1^764ENWSDBED>M7A:BI>KSIR48JQ9B=N\5T3N4A2aF0@>3TI81<G7;YE>W`NMP<:IT4CI3D0=GZC3I\CLQJQBA9BDIS9SAM55KaVA<Z@D=>:Y?CQHUQ5U3a6UVI8OKX9_FAF^7=5M85;<0;8YPAM<7Z7PP7A=N...

output:

000101000101100010001000000010010110000001000001001100000000010000100001000000101100000000010000001000000001110000010110100000111100100000001000000000011001010001000001001000100000000100011001100110010000010000101100000011111000000010000101010010000000010101000001010111100000100000000000000101000100...

result:

ok single line: '000101000101100010001000000010...0101000101000000000010101001000'

Test #5:

score: -100
Time Limit Exceeded

input:

1
2000 2000 1000000
FVAaH7GRPO;_11Da5J18@3SMG==\G8E8S^6:M4L0JH>MN5IXT>2<7WJ3U8LVJS=;;3F13>0D0>VOIIU@EPHG6ABL6;K?T1PXDERLG07]5C9^GDKG<SBMIW;`4W8P3=469TIPKH0O34523_J5C2MJ17D25Z@=K8H@M>WK<CMK7EO]BPD7B6AW741J5YIHIa1:ERSG>L3N2^F3<4F`DLE@2AA5=8GZK6:192FB736[WMV7:^DA2C:<LK040VJBM3M]WXU50`407TR_?PLF@5VL7OSL...

output:


result: