結果
問題 | No.1640 簡単な色塗り |
ユーザー | harurun |
提出日時 | 2021-06-16 11:26:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,443 bytes |
コンパイル時間 | 1,179 ms |
コンパイル使用メモリ | 95,052 KB |
実行使用メモリ | 48,356 KB |
最終ジャッジ日時 | 2024-06-29 14:36:18 |
合計ジャッジ時間 | 27,540 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 6 ms
9,600 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 6 ms
9,472 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
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 | AC | 61 ms
13,904 KB |
testcase_31 | AC | 1,746 ms
42,184 KB |
testcase_32 | AC | 1,221 ms
33,468 KB |
testcase_33 | AC | 553 ms
25,664 KB |
testcase_34 | AC | 860 ms
29,984 KB |
testcase_35 | AC | 560 ms
27,708 KB |
testcase_36 | AC | 61 ms
13,652 KB |
testcase_37 | AC | 92 ms
15,700 KB |
testcase_38 | AC | 1,640 ms
35,596 KB |
testcase_39 | AC | 254 ms
20,376 KB |
testcase_40 | AC | 277 ms
20,480 KB |
testcase_41 | AC | 976 ms
32,124 KB |
testcase_42 | AC | 320 ms
23,452 KB |
testcase_43 | AC | 341 ms
25,740 KB |
testcase_44 | AC | 338 ms
24,080 KB |
testcase_45 | AC | 226 ms
21,832 KB |
testcase_46 | AC | 78 ms
14,980 KB |
testcase_47 | AC | 42 ms
12,664 KB |
testcase_48 | AC | 1,810 ms
34,976 KB |
testcase_49 | AC | 18 ms
10,880 KB |
testcase_50 | AC | 6 ms
9,600 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
07_evil_01.txt | RE | - |
07_evil_02.txt | RE | - |
ソースコード
//時間計測用 //構築未実装 #include <iostream> #include <stdio.h> #include <vector> #include <algorithm> #include <assert.h> #include <stdlib.h> #include <memory.h> #include <queue> #include <time.h> #include <chrono> #include <sys/time.h> #include <atcoder/maxflow> using namespace std; using namespace atcoder; #define ll long long #define INF 1000000000000000000 using std::cout; using std::endl; using std::chrono::duration_cast; using std::chrono::milliseconds; using std::chrono::seconds; using std::chrono::system_clock; int main(){ auto start = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); ll N,A,B; cin>>N; //Dinic F(200002); //Dinic F; //cout<<"INF:"<<F.INF<<endl; mf_graph<ll> F(200010); for(int i=0;i<N;i++){ //cerr<<i<<endl; cin>>A>>B; A--;B--; /* F.add_edge(200000,i,1); F.add_edge(i,100000+A,1); if(A!=B)F.add_edge(i,100000+B,1); F.add_edge(100000+i,200001,1); */ F.add_edge(200000,i,1); F.add_edge(i,100000+A,1); if(A!=B)F.add_edge(i,100000+B,1); F.add_edge(100000+i,200001,1); } //cerr<<"edge added\n"; //ll cnt=F.max_flow(200000,200001); ll cnt=F.flow(200000,200001); //cout<<cnt<<endl; if(cnt!=N){ cout<<"No\n"; return 0; } //ここから構築 cout<<"Yes\n"; auto end= duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); cerr<<end-start<<endl; return 0; }