比赛 |
2024国庆练习1 |
评测结果 |
AAAAAAATTT |
题目名称 |
零食店 |
最终得分 |
70 |
用户昵称 |
徐诗畅 |
运行时间 |
6.427 s |
代码语言 |
C++ |
内存使用 |
3.56 MiB |
提交时间 |
2024-10-04 16:48:43 |
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=105;
int n,m,q,cnt,head[N],V[N];
ll vis[N],dis[N];
struct edge{
int v,w,next;
}e[N*N<<1];
void addedge(int u,int v,int w){
e[++cnt].v=v;
e[cnt].w=w;
e[cnt].next=head[u];
head[u]=cnt;
}
struct node{
ll u,d;
bool operator<(const node&r) const{
return d>r.d;
}
};
int main(){
freopen("snackstore.in","r",stdin);
freopen("snackstore.out","w",stdout);
scanf("%d%d%d",&n,&m,&q);
for(int i = 1;i<=n;i++){scanf("%d",&V[i]);}
for(int i = 1;i<=m;i++){
int u,v;
ll w; scanf("%d%d%lld",&u,&v,&w);
addedge(u,v,w); addedge(v,u,w);
}
while(q--){
int s,c,d;
memset(vis,0,sizeof(vis));
memset(dis,0x3f3f3f3f,sizeof(dis));
scanf("%d%d%d",&s,&c,&d);
priority_queue<node> q;
q.push(node{s,0}); dis[s]=0;
while(!q.empty()){
int u = q.top().u; q.pop();
if(vis[u]) continue; vis[u]=1;
if(V[u]<=c||u==s)
for(int i = head[u];i;i=e[i].next){
int v=e[i].v;
if(dis[v]>dis[u]+e[i].w){
dis[v]=dis[u]+e[i].w;
if(!vis[v]){
q.push(node{v,dis[v]});
}
}
}
}
int ans=0;
for(int i = 1;i<=n;i++)
if(dis[i]<=d) ans++;
// cout<<dis[i]<<" ";
printf("%d\n",ans-1);
}
return 0;
}