Submission #765726

#TimeUsernameProblemLanguageResultExecution timeMemory
765726chanhchuong123Džumbus (COCI19_dzumbus)C++14
20 / 110
49 ms12056 KiB
#include <bits/stdc++.h> using namespace std; #define task "" #define fi first #define se second #define MASK(i) (1LL << (i)) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define BIT(mask, i) ((mask) >> (i) & 1) #define FOR(i, a, b) for (int i = (a), _b = (b); i <= _b; ++i) #define FORD(i, a, b) for (int i = (b), _a = (a); i >= _a; --i) template <typename T1, typename T2> bool minimize(T1 &a, T2 b) { if (a > b) {a = b; return true;} return false; } template <typename T1, typename T2> bool maximize(T1 &a, T2 b) { if (a < b) {a = b; return true;} return false; } const int dx[] = {-1, 0, 0, +1}; const int dy[] = {0, -1, +1, 0}; const int INF = 1e9 + 7; const int MAX = 1010; int n, m, q; int res[MAX]; bool vis[MAX]; int D[MAX], sz[MAX]; vector<int> adj[MAX]; int dp[MAX][MAX][2][2]; int f[MAX][2][2], g[MAX][2][2]; void dfs(int u, int p) { vis[u] = true; for (int v: adj[u]) if (!vis[v]) dfs(v, u); FOR(j, 0, n) FOR(a, 0, 1) FOR(b, 0, 1) { f[j][a][b] = INF; g[j][a][b] = INF; } sz[u] = 1; f[0][0][0] = 0; f[0][1][0] = D[u]; for (int v: adj[u]) if (v != p) { FOR(j, 0, sz[u]) FOR(a, 0, 1) FOR(b, 0, 1) FOR(jj, 0, sz[v]) FOR(aa, 0, 1) FOR(bb, 0, 1){ int jjj = j + jj + (a & aa) * (!b + !bb); minimize(g[jjj][a][b | (a & aa)], dp[v][jj][aa][bb] + f[j][a][b]); } sz[u] += sz[v]; FOR(j, 0, sz[u]) FOR(a, 0, 1) FOR(b, 0, 1) { f[j][a][b] = g[j][a][b]; g[j][a][b] = INF; } } FOR(j, 0, sz[u]) FOR(a, 0, 1) FOR(b, 0, 1) dp[u][j][a][b] = f[j][a][b]; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); if (fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); } cin >> n >> m; for (int i = 1; i <= n; ++i) cin >> D[i]; for (int i = 1; i <= m; ++i) { int u, v; cin >> u >> v; adj[u].push_back(v); adj[v].push_back(u); } vector<pair<int, int>> store; for (int i = 1; i <= n; ++i) if (!vis[i]) { dfs(i, 0); adj[0].push_back(i); } D[0] = INF; dfs(0, 0); for (int j = 0; j <= n; ++j) res[j] = dp[0][j][0][0]; for (int j = n; j >= 1; --j) minimize(res[j - 1], res[j]); cin >> q; while (q--) { int S; cin >> S; cout << (upper_bound(res, res + n, S) - res - 1) << '\n'; } return 0; }

Compilation message (stderr)

dzumbus.cpp: In function 'int main()':
dzumbus.cpp:64:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   64 |   freopen(task".inp", "r", stdin);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
dzumbus.cpp:65:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   65 |   freopen(task".out", "w", stdout);
      |   ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...