結果
問題 | No.317 辺の追加 |
ユーザー |
![]() |
提出日時 | 2025-01-18 18:12:56 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 955 bytes |
コンパイル時間 | 3,207 ms |
コンパイル使用メモリ | 274,008 KB |
実行使用メモリ | 24,192 KB |
最終ジャッジ日時 | 2025-01-18 18:14:42 |
合計ジャッジ時間 | 103,869 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 2 WA * 4 TLE * 32 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;ll n, m, e[400002], h[100002], ne[400002], idx, dp[100002], cnt[100002], az[1002], l, ans;bool f[100002];void add(ll x, ll y) {e[++ idx] = y, ne[idx] = h[x], h[x] = idx;}void dfs(ll x) {ans ++;f[x] = 1;for (ll i = h[x]; i; i = ne[i]) {ll y = e[i];if (! f[y]) dfs(y);}}int main() {cin >> n >> m;for (ll x, y; m --; ) cin >> x >> y, add(x, y), add(y, x);for (ll i = 1; i <= n; i ++ ) if (! f[i]) ans = 0, dfs(i), cnt[ans] ++;for (ll i = 1; i <= n; i ++ ) {if (! cnt[i]) continue;ll p = 1;while (p <= cnt[i]) {if (cnt[i] % (p << 1)) az[++ l] = p * i, cnt[i] -= p;p <<= 1;}if (cnt[i]) az[++ l] = cnt[i] * i;}memset(dp, 0x3f, sizeof dp);dp[0] = 0;for (ll i = 1; i <= n; i ++ ) for (ll j = n; j >= az[i]; j -- ) dp[j] = min(dp[j], dp[j - az[i]] + 1);for (ll i = 1; i <= n; i ++ ) cout << (dp[i] >= n ? -1ll : dp[i] - 1) << endl;}