結果

問題 No.826 連絡網
ユーザー ttttan2ttttan2
提出日時 2019-05-07 16:14:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 165,348 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-05-03 05:21:09
合計ジャッジ時間 8,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 508 ms
55,040 KB
testcase_13 AC 147 ms
23,552 KB
testcase_14 AC 345 ms
41,728 KB
testcase_15 AC 19 ms
7,680 KB
testcase_16 AC 204 ms
28,928 KB
testcase_17 AC 145 ms
23,680 KB
testcase_18 AC 92 ms
19,200 KB
testcase_19 AC 581 ms
63,232 KB
testcase_20 AC 572 ms
62,336 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 165 ms
23,936 KB
testcase_23 AC 214 ms
29,824 KB
testcase_24 AC 60 ms
14,720 KB
testcase_25 AC 718 ms
74,624 KB
testcase_26 AC 78 ms
17,024 KB
testcase_27 AC 518 ms
56,832 KB
testcase_28 AC 382 ms
44,288 KB
testcase_29 AC 146 ms
23,424 KB
testcase_30 AC 726 ms
75,136 KB
testcase_31 AC 187 ms
27,648 KB
権限があれば一括ダウンロードができます

ソースコード

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