結果

問題 No.479 頂点は要らない
ユーザー ShibuyapShibuyap
提出日時 2020-08-03 03:16:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 119 ms / 1,500 ms
コード長 1,244 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 201,196 KB
最終ジャッジ日時 2025-01-12 13:32:21
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_N 200005

vector<P> G[MAX_N];

int ans[MAX_N];
int use[MAX_N];

int main() {
    int n, m;
    cin >> n >> m;
    rep(i,m){
        int a, b;
        cin >> a >> b;
        G[a].push_back(P(b,i));
        G[b].push_back(P(a,i));
    }
    drep(i,n){
        queue<int> que;
        rep(j,G[i].size()){
            if(use[G[i][j].second] == 0){
                use[G[i][j].second] = 1;
                if(ans[G[i][j].first] == 1) continue;
                que.push(G[i][j].first);
                ans[G[i][j].first] = 1;
            }
        }
        while(que.size() > 0){
            int x = que.front();
            que.pop();
            rep(j,G[x].size()){
                use[G[x][j].second] = 1;
            }
        }
    }
    int flag = 0;
    drep(i,n){
        if(ans[i] == 1){
            flag = 1;
            cout << ans[i];
        }else if(flag){
            cout << ans[i];
        }
    }
    cout << endl;
    return 0;
}
 
 
0