結果

問題 No.826 連絡網
ユーザー ttttan2
提出日時 2019-05-07 16:14:14
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 1,386 ms
コンパイル使用メモリ 165,916 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-11-24 02:38:18
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<pii,int> ppii;
typedef pair<int,pii> pipi;
typedef pair<ll,ll> pll;
typedef pair<ll,pll> plpl;
typedef tuple<ll,ll,ll> tl;
ll mod=1000000007;
ll inf=1000000000000000000;
#define rep(i,m,n) for(int i=m;i<n;i++)
#define rrep(i,n,m) for(int i=n;i>=m;i--)
ll lmax(ll a,ll b){
    if(a<b)return b;
    else return a;
}
ll lmin(ll a,ll b){
    if(a<b)return a;
    else return b;
}
int dh[4]={-1,1,0,0};
int dw[4]={0,0,1,-1};
int main(){
    int n,p;cin>>n>>p;
    vector<int> v[n+1];
    bool used[n+1];
    fill(used,used+n+1,false);
    rep(i,2,n+1){
        if(used[i]==false){
            used[i]=true;
            for(int j=i+i;j<=n;j+=i){
                used[j]=true;
                v[j].push_back(j-i);
                v[j-i].push_back(j);
            }
        }
    }
    fill(used,used+n+1,false);
    used[p]=true;
    queue<int> q;
    q.push(p);
    int ans=0;
    while(q.size()>0){
        int now=q.front();q.pop();
        ans++;
        rep(i,0,v[now].size()){
            int ne=v[now][i];
            if(used[ne])continue;
            used[ne]=true;
            q.push(ne);
        }
    }
    cout<<ans<<endl;
}
0