Submission #578105

# Submission time Handle Problem Language Result Execution time Memory
578105 2022-06-16T05:05:12 Z 8e7 Stranded Far From Home (BOI22_island) C++17
0 / 100
707 ms 92056 KB
//Challenge: Accepted
#include <bits/stdc++.h>
using namespace std;
#ifdef zisk
void debug(){cout << endl;}
template<class T, class ... U> void debug(T a, U ... b){cout << a << " ", debug(b...); }
template<class T> void pary(T l, T r) {
	while (l != r) cout << *l << " ", l++;
	cout << endl;
}
#else
#define debug(...) 0
#define pary(...) 0
#endif
#define ll long long
#define maxn 200005
#define maxc 31
#define pii pair<int, int>
#define ff first
#define ss second
#define io ios_base::sync_with_stdio(0);cin.tie(0);
const ll inf = 1LL<<60;
vector<int> adj[maxn];
ll sum[maxc][maxn], mi[maxc][maxn], comp[maxc][maxn];
ll w[maxn];
int lev[maxn];

bool vis[maxn], tv[maxn];
void dfs(int n, int id, int l) {
	vis[n] = 1;	
	sum[l][id] += w[n];
	comp[l][n] = id;
	for (int v:adj[n]) {
		if (!vis[v] && lev[v] < l) dfs(v, id, l);
	}
}
int main() {
	io
	int n, m;
	cin >> n >> m;
	ll tot = 0;
	for (int i = 1;i <= n;i++) cin >> w[i], tot += w[i];
	for (int i = 0;i < m;i++) {
		int u, v;
		cin >> u >> v;
		adj[u].push_back(v);
		adj[v].push_back(u);
	}
	for (int i = 1;i <= n;i++) {
		ll tmp = w[i];
		while (tmp >= 2) {
			lev[i]++;
			tmp >>= 1;
		}
	}
	for (int i = 1;i < maxc;i++) {
		for (int j = 1;j <= n;j++) vis[j] = 0, mi[i][j] = inf;
		mi[i][0] = inf;
		int c = 1;
		for (int j = 1;j <= n;j++) {
			if (!vis[j] && lev[j] < i) {
				dfs(j, c, i);
				//debug(i, j, c, sum[i][c]);
				c++;
			}
		}
		for (int j = 1;j <= n;j++) {
			if (lev[j] >= i) {
				for (int k:adj[j]) {
					mi[i][comp[i][k]] = min(mi[i][comp[i][k]], w[j]);
				}
			}
		}
	}
	string ans;
	for (int i = 1;i <= n;i++) {
		int cur = lev[i];
		bool poss = 0, fi = 1;
		while (cur < maxc) {
			ll p = 0, val = inf;
			if (fi) {
				fi = 0;
				p = w[i];
				vector<int> v;
				for (int j:adj[i]) {
					if (lev[j] < cur && !tv[comp[cur-1][j]]) {
						int c = comp[cur-1][j];
						tv[c] = 1;
						p += sum[cur-1][c];
						v.push_back(c);
						val = min(val, mi[cur-1][c]);
					} else {
						val = min(val, w[j]);
					}
				}
				for (int j:v) tv[j] = 0;
			}
			p += sum[cur][comp[cur][i]];
			val = min(val, mi[cur][comp[cur][i]]);
			debug(p, val);
			if (p == tot) {
				poss = 1;
				break;
			} else if (p < val) {
				break;
			} else {
				cur++;
			}
		}
		debug();
		if (poss) ans += '1';
		else ans += '0';
	}
	cout << ans << "\n";
}

Compilation message

island.cpp: In function 'int main()':
island.cpp:12:20: warning: statement has no effect [-Wunused-value]
   12 | #define debug(...) 0
      |                    ^
island.cpp:100:4: note: in expansion of macro 'debug'
  100 |    debug(p, val);
      |    ^~~~~
island.cpp:12:20: warning: statement has no effect [-Wunused-value]
   12 | #define debug(...) 0
      |                    ^
island.cpp:110:3: note: in expansion of macro 'debug'
  110 |   debug();
      |   ^~~~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5588 KB Output is correct
2 Correct 3 ms 5588 KB Output is correct
3 Correct 3 ms 5588 KB Output is correct
4 Incorrect 6 ms 6100 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5588 KB Output is correct
2 Correct 3 ms 5588 KB Output is correct
3 Incorrect 599 ms 70160 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5588 KB Output is correct
2 Incorrect 577 ms 92056 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5588 KB Output is correct
2 Incorrect 707 ms 73020 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5588 KB Output is correct
2 Correct 3 ms 5588 KB Output is correct
3 Correct 3 ms 5588 KB Output is correct
4 Incorrect 6 ms 6100 KB Output isn't correct
5 Halted 0 ms 0 KB -