QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#604962#8760. 不等式xing4c#WA 4ms20992kbC++141.7kb2024-10-02 14:47:552024-10-02 14:47:57

Judging History

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

  • [2024-10-02 14:47:57]
  • 评测
  • 测评结果:WA
  • 用时:4ms
  • 内存:20992kb
  • [2024-10-02 14:47:55]
  • 提交

answer

#include <bits/stdc++.h>
#define NOSYNC ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define all(x) x.begin(), x.end()
#define endl '\n'
using namespace std;
using ll = long long;
using ull = unsigned long long;

const int N = 200005;

// -------------- Templates Above -------------------------

int a[N]; int n, m;
vector<int> G[N]; vector<int> g[N];
int in[N]; int vis[N]; int d[N];
vector<int> ano[N]; int vq[N];

signed main() {
	NOSYNC;
	cin >> n >> m;
	for(int i = 1; i <= m; i ++) {
		int x, y, z;
		cin >> x >> y >> z;	
		G[x].push_back(y);
		G[x].push_back(z);
		++ d[y]; ++ d[z];
		ano[y].push_back(z);
		ano[z].push_back(y);
		g[y].push_back(x);
		g[z].push_back(x);
		in[x] += 2;
	}
	
	queue<int> q;
	for(int i = 1; i <= n; i ++) {
		if(!d[i]) {
			q.push(i);
		}
	}
	
	while(!q.empty()) {
		int u = q.front(); q.pop();
		vis[u] = 1;
		for(int v : G[u]) {
			-- d[v];
			if(!d[v]) {
				q.push(v);
			}
		}
	}
	for(int i = 1; i <= n; i ++) {
		if(!vis[i]) {
			cout << -1 << endl;
			return 0;
		}
	}
	
	for(int i = 1; i <= n; i ++) vis[i] = 0;
	
	queue<int> q1;
	
	for(int i = 1; i <= n; i ++) {
		if(!in[i]) {
			q1.push(i);
			a[i] = 1;
			vq[i] = 1;
		}
	}
	while(!q1.empty()) {
		int u = q1.front(); q1.pop();
		vq[u] = 1;
		for(int v : g[u]) {
			-- in[v];
			if(!in[v]) {
				q1.push(v);
			}
			for(int w : ano[u]) {
				if(!a[w]) continue;
				// cout << "u: " << u << " v: " << v << " w: " << w << endl;
				a[v] = max(a[v], a[u] + a[w]);
			}
			
		}
	}
	
	
	
	int ans = 0;
	for(int i = 1; i <= n; i ++) {
		ans += a[i];
	}
	if(ans > 1e9 ) {
		cout << -1 << endl;
	}
	cout << ans << endl;
	return 0;
}

詳細信息

Test #1:

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

input:

3 1
1 2 2

output:

4

result:

ok 1 number(s): "4"

Test #2:

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

input:

3 1
1 2 3

output:

4

result:

ok 1 number(s): "4"

Test #3:

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

input:

3 1
1 2 2

output:

4

result:

ok 1 number(s): "4"

Test #4:

score: 0
Accepted
time: 3ms
memory: 20272kb

input:

3 1
1 2 2

output:

4

result:

ok 1 number(s): "4"

Test #5:

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

input:

3 1
1 2 2

output:

4

result:

ok 1 number(s): "4"

Test #6:

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

input:

5 1
1 2 2

output:

6

result:

ok 1 number(s): "6"

Test #7:

score: 0
Accepted
time: 2ms
memory: 20024kb

input:

5 1
1 2 2

output:

6

result:

ok 1 number(s): "6"

Test #8:

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

input:

5 1
1 2 2

output:

6

result:

ok 1 number(s): "6"

Test #9:

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

input:

5 1
1 2 3

output:

6

result:

ok 1 number(s): "6"

Test #10:

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

input:

5 2
1 2 3
2 3 4

output:

8

result:

ok 1 number(s): "8"

Test #11:

score: 0
Accepted
time: 3ms
memory: 20056kb

input:

10 1
1 2 3

output:

11

result:

ok 1 number(s): "11"

Test #12:

score: 0
Accepted
time: 4ms
memory: 20992kb

input:

10 1
1 2 2

output:

11

result:

ok 1 number(s): "11"

Test #13:

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

input:

10 2
1 2 3
2 3 4

output:

13

result:

ok 1 number(s): "13"

Test #14:

score: 0
Accepted
time: 4ms
memory: 20048kb

input:

10 2
1 2 2
2 3 4

output:

14

result:

ok 1 number(s): "14"

Test #15:

score: -100
Wrong Answer
time: 0ms
memory: 20688kb

input:

10 3
1 2 3
1 8 8
2 3 3

output:

15

result:

wrong answer 1st numbers differ - expected: '13', found: '15'