結果
問題 | No.317 辺の追加 |
ユーザー | anta |
提出日時 | 2015-12-10 01:35:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,511 bytes |
コンパイル時間 | 723 ms |
コンパイル使用メモリ | 89,492 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-15 07:16:16 |
合計ジャッジ時間 | 4,594 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:81:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 81 | scanf("%d%d", &u, &v), -- u, -- v; | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <string> #include <vector> #include <algorithm> #include <numeric> #include <set> #include <map> #include <queue> #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <ctime> #include <cstring> #include <cctype> #include <cassert> #include <limits> #include <functional> #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) #if defined(_MSC_VER) || __cplusplus > 199711L #define aut(r,v) auto r = (v) #else #define aut(r,v) __typeof(v) r = (v) #endif #define each(it,o) for(aut(it, (o).begin()); it != (o).end(); ++ it) #define all(o) (o).begin(), (o).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset(m,v,sizeof(m)) #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3fLL using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef vector<pair<int,int> > vpii; typedef long long ll; template<typename T, typename U> inline void amin(T &x, U y) { if(y < x) x = y; } template<typename T, typename U> inline void amax(T &x, U y) { if(x < y) x = y; } void update(int *dp, int n, int s, int t) { for(int i = n; i >= 0; -- i) amin(dp[i + s], dp[i] + t); } void findCCs(int N, const vector<pair<int, int> > &edges, vector<int> &counts) { vector<int> deg(N + 1, 0); for(pii e : edges) ++ deg[e.first], ++ deg[e.second]; rep(i, N) deg[i + 1] += deg[i]; vector<int> to(edges.size() * 2, -1); for(pii e : edges) { to[-- deg[e.first]] = e.second; to[-- deg[e.second]] = e.first; } counts.assign(N + 1, 0); vector<bool> vis(N, false); vector<int> q(N); int t = 0; rep(s, N) if(!vis[s]) { int head = t; vis[s] = true; q[t ++] = s; for(int h = 0; h < t; ++ h) { int i = q[h]; for(int j = deg[i]; j < deg[i + 1]; ++ j) { int k = to[j]; if(!vis[k]) { vis[k] = true; q[t ++] = k; } } } ++ counts[t - head]; } } int main() { int N; int M; while(~scanf("%d%d", &N, &M)) { vector<pair<int, int> > edges(M); rep(i, M) { int u; int v; scanf("%d%d", &u, &v), -- u, -- v; edges[i] = {u, v}; } vector<int> counts; findCCs(N, edges, counts); vi dp(N + 1, INF); dp[0] = 0; int sum = 0; rer(i, 1, N) { int n = counts[i]; while(n > 0) { int m = (n + 1) / 2; update(&dp[0], sum, i * m, m); sum += i * m; n -= m; } } rer(i, 1, N) printf("%d\n", dp[i] == INF ? -1 : dp[i] - 1); } return 0; }