結果
問題 | No.416 旅行会社 |
ユーザー | ojisan_IT |
提出日時 | 2017-10-11 00:07:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,384 bytes |
コンパイル時間 | 1,041 ms |
コンパイル使用メモリ | 102,412 KB |
実行使用メモリ | 20,896 KB |
最終ジャッジ日時 | 2024-11-17 08:36:55 |
合計ジャッジ時間 | 73,866 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 2 ms
13,636 KB |
testcase_02 | AC | 2 ms
11,040 KB |
testcase_03 | AC | 2 ms
13,640 KB |
testcase_04 | AC | 2 ms
13,636 KB |
testcase_05 | AC | 2 ms
13,636 KB |
testcase_06 | AC | 3 ms
15,652 KB |
testcase_07 | AC | 29 ms
13,640 KB |
testcase_08 | AC | 441 ms
13,636 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
ソースコード
#include<iostream> #include<vector> #include<map> #include<tuple> #include<string> #include<cmath> #include<climits> #include<algorithm> #include<bitset> #include<set> #include<stack> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; #define rep(i,n) for(ll i=0;i<(n);i++) #define tii tuple<int,int> #define tiii tuple<int,int,int> #define mt make_tuple #define pb push_back #define ALL(a) (a).begin(),(a).end() #define FST first #define SEC second const int INF = (INT_MAX/2); const ll LLINF = (LLONG_MAX/2); const double eps = 1e-5; const double PI = M_PI; #define DEB cerr<<"!"<<endl #define SHOW(a,b) cerr<<(a)<<" "<<(b)<<endl #define SHOWARRAY(ar,i,j) REP(a,i)REP(b,j)cerr<<ar[a][b]<<((b==j-1)?((a==i-1)?("\n\n"):("\n")):(" ")) #define DIV 1000000007 ll pow(ll x,ll n,ll m){ll r=1;while(n>0){if((n&1)==1)r=r*x%m;x=x*x%m;n>>=1;}return r%m;} #define Nodes 10000 class UF{ public: int value[Nodes]; int over[Nodes]; // When over < 0, 'over' keep number of node(using negative number). -1 means this tree is a node. int root(int index){ int t = index; stack<int> stack_i; while(over[t] >= 0){ stack_i.push(t); t = over[t]; } while(!stack_i.empty()){ int i = stack_i.top(); stack_i.pop(); over[i] = t; }// reconnect /* if(over[t] > 0) over[index] = t みたいな張り替えでも十分早い*/ return t; } void merge(int a,int b){ if(this->root(a) == this->root(b)) return; over[root(a)] += over[root(b)]; // over have a number of nodes. over[root(b)] = root(a); } UF(){rep(i,Nodes) over[i] = -1;} // all nodes are root. }; vector<tii> v; int main(){ int n,m,q; cin >> n >> m >> q; set<tii> input; rep(i,m){ int a,b; cin >> a >> b; input.insert(tii{a,b}); } stack<tii> que; rep(i,q){ int c,d; cin >> c >> d; input.erase(tii{c,d}); que.push(tii{c,d}); } UF u; int ans[100001] ={}; for(auto itr:input){ int a,b; tie(a,b) = itr; u.merge(a,b); } for(int i = 2; i <= n; i++) if(u.root(1) == u.root(i)) ans[i] = -1; int i = 1; while(!que.empty()){ int c,d; tie(c,d) = que.top(); que.pop(); u.merge(c,d); //SHOW(q-i,i); for(int j = 2; j <= n; j++) if(u.root(1) == u.root(j) && ans[j] == 0) ans[j] = q-i+1; i++; } rep(i,n-1) cout << ans[i+2] << endl; }