結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | GoldIngot |
提出日時 | 2023-08-04 22:17:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,451 bytes |
コンパイル時間 | 4,558 ms |
コンパイル使用メモリ | 264,780 KB |
実行使用メモリ | 16,896 KB |
最終ジャッジ日時 | 2024-10-14 20:16:01 |
合計ジャッジ時間 | 5,875 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 17 ms
5,248 KB |
testcase_05 | AC | 32 ms
6,400 KB |
testcase_06 | AC | 32 ms
6,912 KB |
testcase_07 | AC | 19 ms
5,248 KB |
testcase_08 | AC | 21 ms
5,760 KB |
testcase_09 | AC | 34 ms
7,040 KB |
testcase_10 | AC | 32 ms
6,528 KB |
testcase_11 | AC | 24 ms
6,016 KB |
testcase_12 | AC | 31 ms
6,784 KB |
testcase_13 | AC | 26 ms
6,016 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using P = pair<ll,ll>; #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rep2(i,m,n) for(int (i)=(m);(i)<(n);(i)++) #define rep2ll(i,m,n) for(ll (i)=(m);(i)<(n);(i)++) #define ALL(obj) (obj).begin(), (obj).end() #define rALL(obj) (obj).rbegin(), (obj).rend() const ll INF60 = 1LL<<60;//1152921504606846976 const int INF30 = 1<<30; using mint = modint998244353; using VL = vector<ll>; using VVL = vector<VL>; using VVVL = vector<VVL>; using VM = vector<mint>; using VVM = vector<VM>; using VVVM = vector<VVM>; using VD = vector<double>; using VVD = vector<VD>; using VVVD = vector<VVD>; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int main(){ ios::sync_with_stdio(false); cin.tie(0); ll n, m; cin>>n>>m; VL u(m), v(m); rep(i,m) cin>>u[i]>>v[i], u[i]--, v[i]--; VL din(n, 0), dout(n, 0); atcoder::dsu uf(n); rep(i,m){ uf.merge(u[i], v[i]); din[v[i]]++; dout[u[i]]++; } ll ans = 0; ll sz = 0; for(auto g:uf.groups()){ ll dsum = 0; for(auto x:g) dsum += abs(din[x] - dout[x]); ans += max(0LL, dsum/2-1); sz += min(din[g[0]],dout[g[0]])!=0; } cout<<ans+max(0LL,sz-1); return 0; }