比赛 |
至少完成十道练习 |
评测结果 |
AAAAAAAAAA |
题目名称 |
分糖果 |
最终得分 |
100 |
用户昵称 |
FFF团 |
运行时间 |
1.271 s |
代码语言 |
C++ |
内存使用 |
1.94 MiB |
提交时间 |
2017-05-21 13:29:06 |
显示代码纯文本
#include<bits/stdc++.h>
#include<iostream>
#include<cstdio>
#include<queue>
#include<vector>
#include<cstring>
using namespace std;
const int maxn=100002;
vector<int>G[maxn];
queue<int>q;
bool inq[maxn];
int d[maxn];
int n,m,c,t,ans=-0x7fffffff;
int main(){
freopen("dividecandy.in","r",stdin);
freopen("dividecandy.out","w",stdout);
scanf("%d%d%d\n%d",&n,&m,&c,&t);
for(int i=1;i<=m;i++){
int x,y;
scanf("%d%d",&x,&y);
G[x].push_back(y);
G[y].push_back(x);
}
memset(d,0x7f,sizeof(d));
d[c]=1;
q.push(c);
inq[c]=true;
while(!q.empty()){
int u=q.front();
q.pop();
inq[u]=false;
int l=G[u].size();
for(int i=0;i<l;i++){
int v=G[u][i];
if(d[u]<0x7fffffff&&d[v]>d[u]+1){
d[v]=d[u]+1;
ans=max(ans,d[v]);
q.push(v);
inq[v]=true;
}
}
}
ans+=t;
printf("%d\n",ans);
return 0;
}