#include <bits/stdc++.h>
using namespace std;
vector<vector<pair<int,int> > > adj;
vector<bool> hasVisited;
int ans = 0;
void dfs (int curNode, int prevNode) {
if (hasVisited[curNode]) {
return;
}
hasVisited[curNode] = true;
for (pair<int,int> p: adj[curNode]) {
if (p.first != prevNode) {
ans += p.second;
dfs (p.first, curNode);
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, k;
cin >> n >> k;
adj.resize(2 * n);
hasVisited.assign(2 * n, false);
map<pair<int,int>,vector<int> > myMap;
for (int i = 0; i < 2 * n; i++) {
int u, v, w;
cin >> u >> v >> w;
u--, v--;
v += n;
myMap[make_pair(u, v)].push_back(w);
adj[u].push_back(make_pair(v, w));
adj[v].push_back(make_pair(u, -w));
}
vector<int> tot;
for (int i = 0; i < n; i++) {
if (!hasVisited[i]) {
ans = 0;
if (adj[i].empty()) {
cout << "NO\n";
exit(0);
}
dfs (i, adj[i].back().first);
tot.push_back(abs(ans));
return 0;
}
}
return 0;
for (auto& p: myMap) {
if (p.second.size() <= 1) {
continue;
}
int a = 0;
for (int j = 0; j < p.second.size(); j++) {
if (j % 2) a += p.second[j];
else a -= p.second[j];
}
tot.push_back(abs(a));
}
bitset<60000> bs;
bs.set(30000);
for (int j: tot) {
bs = (bs >> j) | (bs << j);
}
for (int i = 0; i <= k; i++) {
if (bs[30000 + i]) {
cout << "YES\n";
return 0;
}
}
cout << "NO\n";
}
Compilation message
tug.cpp: In function 'int main()':
tug.cpp:55:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
55 | for (int j = 0; j < p.second.size(); j++) {
| ~~^~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
2464 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |