当前位置: 首页 > article >正文

PAT甲级1003Emergency

介绍

寻找路径最短的种类数并输出最短路径的最多救援队数量

As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between any pair of cities are marked on the map. When there is an emergency call to you from some other city, your job is to lead your men to the place as quickly as possible, and at the mean time, call up as many hands on the way as possible.

Input Specification:

Each input file contains one test case. For each test case, the first line contains 4 positive integers: N (≤500) - the number of cities (and the cities are numbered from 0 to N−1), M - the number of roads, C1​ and C2​ - the cities that you are currently in and that you must save, respectively. The next line contains N integers, where the i-th integer is the number of rescue teams in the i-th city. Then M lines follow, each describes a road with three integers c1​, c2​ and L, which are the pair of cities connected by a road and the length of that road, respectively. It is guaranteed that there exists at least one path from C1​ to C2​.

Output Specification:

For each test case, print in one line two numbers: the number of different shortest paths between C1​ and C2​, and the maximum amount of rescue teams you can possibly gather. All the numbers in a line must be separated by exactly one space, and there is no extra space allowed at the end of a line.

代码

#include<bits/stdc++.h>
using namespace std;
#define ll long long  
#define ull unsigned long long
int i,j,n,m;
int num1[1001][1001];
int kinds_num=0;
int kinds=99999;
bool num2[1001];
int where_num[501];
int kinds_amount=-1;
void dfs(int now1,int sum,int num)//sum=road_length num=team
{
    
    if(now1==m)
    {
        //memset(num2,0,sizeof(num2));
        //kinds[sum]++;
        if(sum<kinds)
        {
            kinds=sum;
            kinds_num=1;
            kinds_amount=num;
        }
        else if(sum==kinds)
        {
            kinds_num++;
            kinds_amount=max(kinds_amount,num);
        }
        return;
    }
    num2[now1]=1;
    for(int a1=0;a1<=i-1;a1++)
    {
        if(num2[a1]==0&&num1[now1][a1]!=0)
        {
            num2[a1]=1;
            dfs(a1,sum+num1[now1][a1],num+where_num[a1]);
            num2[a1]=0;
        }
    }
}
void solve() {
	
	memset(num1,0,sizeof(num1));
	memset(num2,0,sizeof(num2));
    //memset(kinds,0,sizeof(kinds));
    //memset(kinds_amount,0,sizeof(kinds_amount));
    cin>>i>>j>>n>>m;
    int p1,p2;
    int i1,j1;

    for(int p1=0;p1<=i-1;p1++)
    {
        cin>>where_num[p1];
    }
    for(int p1=0;p1<=j-1;p1++)
    {
        
        cin>>i1>>j1>>p2;
        num1[i1][j1]=p2;
        num1[j1][i1]=p2;
    }
    dfs(n,0,where_num[n]);
    //int *ssr=lower_bound(kinds,kinds+501,1);
    cout<<kinds_num<<" "<<kinds_amount;
} 

signed main() {

    ll t = 1; 
    // std::cin >> t;
    while (t--) {
        solve();
    }
}


http://www.kler.cn/a/324301.html

相关文章:

  • 后台管理系统(开箱即用)
  • 校园二手交易网站毕业设计基于SpringBootSSM框架
  • Ubuntu24 上安装搜狗输入法
  • React Native 全栈开发实战班 - 网络与数据之网络请求基础
  • stm32——通用定时器时钟知识点
  • 当微软windows的记事本被AI加持
  • 【分布式微服务云原生】10分钟揭秘Dubbo负载均衡:如何让服务调用更智能?
  • 发明专利实用新型专利外观设计专利
  • List几种遍历方法速度
  • 【GUI设计】基于图像分割的GUI系统(3),matlab实现
  • leetcode91. 解码方法,动态规划
  • uniapp设置从右上角到左下角的三种渐变颜色
  • 滚雪球学MySQL[2.1讲]:基础SQL操作
  • 如何使用 Go 获取你的 IP 地址
  • MMD模型及动作一键完美导入UE5-IVP5U插件方案(二)
  • Vue3中的30个高频重点面试题
  • 金镐开源组织成立,增加最新KIT技术,望能为开源添一把火
  • 加法器以及标志位
  • Qt学习笔记
  • HTTP请求过程 part-1
  • 高通Android 12 音量API设置相关代码
  • (undone) MIT6.824 Lecture1 笔记
  • OpenGL ES 绘制一个三角形(2)
  • zookeeper 服务搭建(集群)
  • 解决SpringBoot 3.3.x集成Micrometer和Prometheus,导致项目阻塞,无法启动
  • 演示:基于WPF的DrawingVisual开发的频谱图和律动图