amani


私信TA

用户名:dotcpp0715638

访问量:348

签 名:

等  级
排  名 21956
经  验 662
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

用python写个bfs
浏览:340

解题思路:

注意事项:

参考代码:

#飞机降落,bfs枚举

T = int(input())

sj = [[(0,0,0)] for _ in range(T)]

for i in range(T):

    n = int(input())

    for j in range(n):

        t,d,l = map(int,input().strip().split())

        sj[i].append((t,d,l))



N = [False for _ in range(15)]


def bfs(node,n,time,c,ans=[]):

    if node == n:

        print("YES")

        return True

    else:

        for i in range(1,n+1):

            if N[i] == True:

                continue

            if time >  sj[c][i][0]+sj[c][i][1]:

                continue

            ans.append(i)

            N[i] = True

            pd = bfs(node+1,n,max((time+sj[c][i][2]),(sj[c][i][0]+sj[c][i][2])),c,ans)

            if  pd:

                return True

            else:

                N[i] = False

                ans.pop()

        return False


for i in range(len(sj)):

    pd = bfs(0,len(sj[i])-1,0,i)

    N = [False for _ in range(15)]

    if not pd:

        print("NO")

    




 

0.0分

1 人评分

  评论区

哇塞
2024-03-11 12:48:50
  • «
  • 1
  • »