結果

問題 No.95 Alice and Graph
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-08 15:32:01
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 3,343 ms / 5,000 ms
コード長 1,080 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 296,176 KB
最終ジャッジ日時 2024-06-24 15:58:06
合計ジャッジ時間 14,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,505 ms
222,080 KB
testcase_01 AC 311 ms
102,272 KB
testcase_02 AC 313 ms
100,600 KB
testcase_03 AC 87 ms
77,952 KB
testcase_04 AC 1,953 ms
289,700 KB
testcase_05 AC 1,523 ms
264,192 KB
testcase_06 AC 1,635 ms
294,380 KB
testcase_07 AC 308 ms
102,248 KB
testcase_08 AC 98 ms
77,988 KB
testcase_09 AC 76 ms
75,648 KB
testcase_10 AC 79 ms
76,588 KB
testcase_11 AC 107 ms
78,720 KB
testcase_12 AC 97 ms
78,208 KB
testcase_13 AC 3,343 ms
296,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,raw_input().split())
graph = [[50000 for i in xrange(N)] for j in xrange(N)]
for i in xrange(M):
    u,v=map(int,raw_input().split())
    graph[u-1][v-1]=1
    graph[v-1][u-1]=1
for i in xrange(N):
    for j in xrange(N):
        for k in xrange(N):
            graph[j][k]=min(graph[j][k],graph[j][i]+graph[i][k])
points=[0]
for i in xrange(N-1,0,-1):
    if len(points) == K+1:
        break
    points.append(i)
    size=len(points)
    totalDist=[[50000 for i in xrange(size)] for j in xrange(1<<size)]
    totalDist[1][0]=0
    for m in xrange(1<<size):
        for s in xrange(size):
            if (m&(1<<s)) >0 and totalDist[m][s]<=K:
                for t in xrange(size):
                    if(m&(1<<t)) == 0:
                        totalDist[m|(1<<t)][t]=min(totalDist[m|(1<<t)][t],totalDist[m][s]+graph[points[s]][points[t]])
    ok=False
    for end in xrange(size):
        if totalDist[(1<<size)-1][end]<=K:
            ok=True
            break
    if ok==False:
        points.pop()
ans=0
for p in points:
    #print p
    ans+=(1<<p)-1
print ans
0