Submission #24508145


Source Code Expand

Copy
import copy
MOD = 10**9+7
N,M = map(int,input().split())
if M == 0:
print(0)
exit()
mat = []
for i in range(M):
A,B = map(int,input().split())
mat.append([A,B])
mat.append([B,A])
mat.sort()
#print(mat)
def nibutan_ika(NUM,MAT):
MIN = 0
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
import copy

MOD = 10**9+7
N,M = map(int,input().split())

if M == 0:
  print(0)
  exit()

mat = []

for i in range(M):
  A,B = map(int,input().split())
  mat.append([A,B])
  mat.append([B,A])
  
mat.sort()
#print(mat)

def nibutan_ika(NUM,MAT):
  MIN = 0
  MAX = len(MAT)-1
  while True:
    TMP = (MIN+MAX)//2
    if MAT[TMP][0] <= NUM:
      MIN = TMP
    elif MAT[TMP][0] > NUM:
      MAX = TMP
    if MAX-MIN <= 1:
      break
  if MAT[MAX][0] <= NUM:
    MIN = MAX
  return MIN #,MAT[MIN]

def nibutan_ijyou(NUM,MAT):
  MIN = 0
  MAX = len(MAT)-1
  while True:
    TMP = (MIN+MAX)//2
    if MAT[TMP][0] < NUM:
      MIN = TMP
    elif MAT[TMP][0] >= NUM:
      MAX = TMP
    if MAX-MIN <= 1:
      break
  if MAT[MIN][0] >= NUM:
    MAX = MIN
  return MAX #,MAT[MIN]

#print(nibutan_ijyou(2,mat), nibutan_ika(2,mat))

check = [0]*(N+1)
check[1] = 1
ans = [0]*(N+1)
ans[1] = 1

old = []
new = [1]

while True:
  old = copy.deepcopy(new)
  new = []
  #print(old)
  #print(ans)
  for i in range(len(old)):
    #print(nibutan_ijyou(old[i],mat), nibutan_ika(old[i],mat)+1)
    for j in range(nibutan_ijyou(old[i],mat), nibutan_ika(old[i],mat)+1):
      if check[mat[j][1]] == 0:
        #print(mat[j][0],"->",mat[j][1])
        ans[mat[j][1]] = (ans[mat[j][1]] + ans[mat[j][0]]) % MOD
  for i in range(len(old)):
    for j in range(nibutan_ijyou(old[i],mat), nibutan_ika(old[i],mat)+1):
      if check[mat[j][1]] == 0:
        check[mat[j][1]] = 1
        new.append(mat[j][1])
  if new == []:
    break
  if ans[-1] != 0:
    break
    
print(ans[-1])

Submission Info

Submission Time
Task D - Number of Shortest paths
User ysys_Ba
Language PyPy3 (7.3.0)
Score 0
Code Size 1633 Byte
Status TLE
Exec Time 2209 ms
Memory 142716 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 4
AC × 27
TLE × 3
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt
All random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_31.txt, random_32.txt, random_33.txt, random_34.txt, random_35.txt, random_36.txt, sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt
Case Name Status Exec Time Memory
random_01.txt AC 1882 ms 138808 KB
random_02.txt AC 1672 ms 136536 KB
random_03.txt AC 911 ms 107248 KB
random_04.txt AC 873 ms 107532 KB
random_05.txt AC 1823 ms 139012 KB
random_06.txt AC 1575 ms 136108 KB
random_07.txt AC 429 ms 84720 KB
random_08.txt AC 293 ms 77792 KB
random_09.txt AC 1805 ms 138676 KB
random_10.txt AC 1740 ms 136336 KB
random_11.txt AC 456 ms 86652 KB
random_12.txt AC 228 ms 74132 KB
random_13.txt AC 1613 ms 137116 KB
random_14.txt AC 1886 ms 139104 KB
random_15.txt AC 1850 ms 124596 KB
random_16.txt AC 924 ms 98068 KB
random_17.txt TLE 2209 ms 140276 KB
random_18.txt AC 1591 ms 135536 KB
random_19.txt AC 1644 ms 129796 KB
random_20.txt AC 733 ms 92700 KB
random_31.txt AC 1443 ms 132984 KB
random_32.txt AC 1773 ms 139656 KB
random_33.txt TLE 2209 ms 142716 KB
random_34.txt AC 1951 ms 138340 KB
random_35.txt AC 1935 ms 137432 KB
random_36.txt TLE 2178 ms 141072 KB
sample_01.txt AC 75 ms 67104 KB
sample_02.txt AC 66 ms 67524 KB
sample_03.txt AC 63 ms 67748 KB
sample_04.txt AC 68 ms 67504 KB


2025-04-05 (Sat)
04:52:08 +00:00