Problem J

本文介绍了一个寻找森林中从办公室到家的不同路径的问题。利用SPFA算法进行最短路径计算,并结合深度优先搜索来统计所有可行路径的数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
Jimmy experiences a lot of stress at work these days, especially since his accident made working difficult. To relax after a hard day, he likes to walk home. To make things even nicer, his office is on one side of a forest, and his house is on the other. A nice walk through the forest, seeing the birds and chipmunks is quite enjoyable. <br>The forest is beautiful, and Jimmy wants to take a different route everyday. He also wants to get home before dark, so he always takes a path to make progress towards his house. He considers taking a path from A to B to be progress if there exists a route from B to his home that is shorter than any possible route from A. Calculate how many different routes through the forest Jimmy might take. <br>
 

Input
Input contains several test cases followed by a line containing 0. Jimmy has numbered each intersection or joining of paths starting with 1. His office is numbered 1, and his house is numbered 2. The first line of each test case gives the number of intersections N, 1 < N ≤ 1000, and the number of paths M. The following M lines each contain a pair of intersections a b and an integer distance 1 ≤ d ≤ 1000000 indicating a path of length d between intersection a and a different intersection b. Jimmy may walk a path any direction he chooses. There is at most one path between any pair of intersections. <br>
 

Output
For each test case, output a single integer indicating the number of different routes through the forest. You may assume that this number does not exceed 2147483647<br>
 

Sample Input
5 6 1 3 2 1 4 2 3 4 3 1 5 12 4 2 34 5 2 24 7 8 1 3 1 1 4 1 3 7 1 7 4 1 7 5 1 6 7 1 5 2 1 6 2 1 0
 

Sample Output
2 4
 简单题意:
  吉米在回家的路上,路过森林是一件非常惬意的事情。现在需要编写一个程序,求出吉米穿越森林回家会有多少不同的方法。
解题思路形成过程:
  这是一个典型的求出最短路径的问题。用到了课堂上最后讲到的一种实用算法,Spfa和深度搜索。套入模板,代码就能一步一步完成。
感想:
  图论方面,算法如果自己想,难度是非常大的。用上课堂上的算法,所有题目简单了许多。
AC代码:
#include<iostream>
#include<queue>
using namespace std;
 
typedef struct n1
{
    int  distens,flog;
}node;
node N[1005];
int map[1005][1005],k;
int direct[1005];
void set(int n)
{
    int i,j,m,n1,n2,d;
    for(i=1;i<=n;i++)
    {
        for(j=1;j<=n;j++)
        {
            map[i][j]=-1;
        }
         N[i].distens=10000000;N[i].flog=0;direct[i]=0;
    }
 
    scanf("%d",&m);
    while(m--)
    {
        scanf("%d%d%d",&n1,&n2,&d);
        if(map[n1][n2]!=0||map[n1][n2]>d)
        map[n1][n2]=map[n2][n1]=d;
    }
}
void spfa(int n)
{
    queue<int> Q;
    int now;
    int i;
     N[2].distens=0;N[2].flog=1;
    Q.push(2);
    while(!Q.empty())
    {
        now=Q.front();
        Q.pop();
        N[now].flog=0;
        for(i=1;i<=n;i++)
        if(map[now][i]!=-1)
        {
            if(N[i].distens>N[now].distens+map[now][i])
            {
                N[i].distens=N[now].distens+map[now][i];
                if(N[i].flog==0)
                {
                    N[i].flog=1;
                    Q.push(i);
                }
            }
        }
    }
}
int DFS(int now,int n)
{
    int i;
    if(direct[now]>0)
    return direct[now];
    if(now==2)
    {
        return 1;
    }
    for(i=1;i<=n;i++)
    if(map[now][i]!=-1&&N[now].distens>N[i].distens)
    {
        direct[now]+=DFS(i,n);
    }
 
   return direct[now];
}
int main()
{
    int n;
    while(scanf("%d",&n)>0&&n)
    {
        set(n);
        spfa(n);
        k=DFS(1,n);
        printf("%d\n",k);
    }
}

题目描述 现在我们需要实现一个日期类 MyDate,它应该有以下几个功能: 1.初始化:MyDate(int year, int month, int day),其中 year 表示年份,month 表示月份,day 表示日期。 2.获取日期:int getDay(),获取当前日期。 3.获取月份:int getMonth(),获取当前月份。 4.获取年份:int getYear(),获取当前年份。 5.判断是否为闰年:bool isLeapYear(),如果是闰年则返回 true,否则返回 false。 6.计算两个日期之间相差的天数:int daysBetweenDates(MyDate& date),其中 date 是另一个 MyDate 类型的日期对象,返回当前日期与 date 日期之间相差的天数。假设 date 日期晚于当前日期。 注意事项: 1.年份 year 的范围为 [1900, 2100]。 2.月份 month 的范围为 [1, 12]。 3.日期 day 的范围为 [1, 31]。 4.两个日期之间相差的天数不会超过 int 类型能表示的范围。 5.如果输入的日期不符合要求,则输出 "invalid date"。 输入格式 第一行一个整数 T,表示共有 T 组测试数据。 每组测试数据占一行,包含六个整数 year, month, day, year2, month2, day2,其中 (year, month, day) 表示当前日期,(year2, month2, day2) 表示另一个日期。 输出格式 对于每组测试数据,输出其相差的天数。 如果输入的日期不符合要求,则输出 "invalid date"。 样例输入 3 2012 3 1 2012 3 2 2012 1 1 2012 3 1 2013 1 1 2012 3 1 样例输出 1 60 invalid date 数据说明 样例 #1: 2012 年 3 月 1 日到 2012 年 3 月 2 日相差 1 天。 样例 #2: 2012 年 1 月 1 日到 2012 年 3 月 1 日相差 60 天。 样例 #3: 2013 年 1 月 1 日不符合年份的要求,输出 "invalid date"。 解题思路 这道题目其实就是一个日期类的实现,我们需要根据题目意思,实现 MyDate 类。 首先,我们需要实现 MyDate 类的构造函数,用于初始化年月日。然后,我们需要实现 getDay(),getMonth(),getYear() 和 isLeapYear() 函数,用于获取年月日,并判断是否为闰年。 最后,我们需要实现 daysBetweenDates() 函数,用于计算两个日期之间相差的天数。我们可以先将两个日期转化为从 1900 年 1 月 1 日开始的天数,然后计算两者之间的差值即可。 注意事项: 1.要注意闰年的判断,闰年的条件是:能被 4 整除但不能被 100 整除,或者能被 400 整除。 2.要注意月份和日期的范围,例如 2 月份的日期不能超过 29。 3.要注意输入的日期是否符合要求,如果不符合要求,则输出 "invalid date"。 参考代码
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值