結果
問題 | No.2912 0次パーシステントホモロジー |
ユーザー | maksim |
提出日時 | 2024-10-04 23:07:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,755 bytes |
コンパイル時間 | 1,985 ms |
コンパイル使用メモリ | 187,152 KB |
実行使用メモリ | 14,328 KB |
最終ジャッジ日時 | 2024-10-04 23:08:02 |
合計ジャッジ時間 | 3,339 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int p=998244353; int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*1LL*u)%p;} else {int u=po(a,b-1);return (a*1LL*u)%p;}} int inv(int x) {return po(x,p-2);} mt19937 rnd; #define app push_back #define all(x) (x).begin(),(x).end() #ifdef LOCAL #define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__) #define debugv(v) do {cout<< #v <<" : {"; for(int izxc=0;izxc<v.size();++izxc) {cout << v[izxc];if(izxc+1!=v.size()) cout << ","; }cout <<"}"<< endl;} while(0) #else #define debug(...) #define debugv(v) #endif #define lob(a,x) lower_bound(all(a),x) #define upb(a,x) upper_bound(all(a),x) const int maxn=1e5+5; int par[maxn]; int get(int x) { if(par[x]==(-1)) return x; int ans=get(par[x]); par[x]=ans;return ans; } void merg(int x,int y) { x=get(x);y=get(y);if(x!=y) par[x]=y; } int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); fill(par,par+maxn,-1); int n,m;cin>>n>>m; vector<array<int,3> > v; for(int i=0;i<m;++i) {int x,y,w;cin>>x>>y>>w;v.app({w,x,y});} vector<int> que; int q;cin>>q;que.resize(q);for(int i=0;i<q;++i) cin>>que[i]; auto que1=que;sort(all(que1)); sort(all(v));int id=0; int cn=n;map<int,int> answ; for(int i=0;i<que1.size();++i) { while(id<v.size() && v[id][0]<=que1[i]) { debug(i,id); int x=get(v[id][1]),y=get(v[id][2]); debug(x,y); if(x!=y) {--cn;par[x]=y;} ++id; } answ[que1[i]]=cn; } for(int qu:que) { debug(qu); cout<<answ[qu]<<' '; } return 0; }