Submission #971115

# Submission time Handle Problem Language Result Execution time Memory
971115 2024-04-28T02:09:04 Z THXuan Topical (NOI23_topical) C++14
0 / 100
14 ms 23940 KB
#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#define INF 1e9
using namespace std;
typedef long long ll;

vector<pair<ll, int>>x[1000005];

void solve()
{
	int n, k; cin >> n >> k;
	vector<vector<ll>>v(n + 1, vector<ll>(k + 1));
	vector<vector<ll>>a(n + 1, vector<ll>(k + 1));
	int root = 0;
	for (int i = 0; i < n; i++) {
		bool flag = true;
		for (int j = 0; j < k; j++) {
			cin >> v[i][j];
			if (v[i][j] > 0)flag = false;
			x[j].push_back({ v[i][j], i });
		}
		if (flag) root = i;
	}
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < k; j++) {
			cin >> a[i][j];
		}
	}
	for (int i = 0; i < k; i++) sort(x[i].begin(), x[i].end());
	queue<int>q;
	q.push(root);
	int ans = 0;
	vector<bool>visited(n, false);
	vector<int>p(k);
	while (q.size()) {
		int node = q.front(); q.pop();
		if (visited[node])continue;
		visited[node] = true;
		++ans;
		map<int, int>seen;
		for (int i = 0; i < k; i++) {
			p[i] += a[node][i];
			int now = 0;
			while (now < x[i].size() && x[i][now].first <= p[i]) {
				seen[x[i][now].second]++;
				++now;
			}
		}
		for (auto u : seen) {
			if (u.second == k && !visited[u.first])q.push(u.first);
		}
	}
	cout << ans << "\n";
}

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;// cin>>t;
	while (t--) solve();
	return 0;
}

Compilation message

Main.cpp: In function 'void solve()':
Main.cpp:48:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   48 |    while (now < x[i].size() && x[i][now].first <= p[i]) {
      |           ~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 23900 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 7 ms 23900 KB Output is correct
2 Correct 5 ms 23900 KB Output is correct
3 Correct 7 ms 23900 KB Output is correct
4 Incorrect 7 ms 23940 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 23900 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 23900 KB Output isn't correct
2 Halted 0 ms 0 KB -