結果

問題 No.826 連絡網
ユーザー ttttan2ttttan2
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 376 ms
54,912 KB
testcase_13 AC 103 ms
23,424 KB
testcase_14 AC 243 ms
41,728 KB
testcase_15 AC 19 ms
7,680 KB
testcase_16 AC 135 ms
29,056 KB
testcase_17 AC 99 ms
23,552 KB
testcase_18 AC 72 ms
19,072 KB
testcase_19 AC 459 ms
63,232 KB
testcase_20 AC 442 ms
62,208 KB
testcase_21 AC 4 ms
6,820 KB
testcase_22 AC 102 ms
24,064 KB
testcase_23 AC 154 ms
29,696 KB
testcase_24 AC 94 ms
14,720 KB
testcase_25 AC 577 ms
74,624 KB
testcase_26 AC 63 ms
16,896 KB
testcase_27 AC 392 ms
56,832 KB
testcase_28 AC 309 ms
44,288 KB
testcase_29 AC 102 ms
23,552 KB
testcase_30 AC 565 ms
75,392 KB
testcase_31 AC 128 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