首页 > 其他分享 >[luoguAT_abc369_e] Sight[luoguAT_abc369_e]Sightseeing Tour

[luoguAT_abc369_e] Sight[luoguAT_abc369_e]Sightseeing Tour

时间:2024-09-07 18:03:07浏览次数:7  
标签:typedef dist int Tour abc369 include luoguAT

题意

给定一个包含 \(N\) 个点和 \(M\) 条无向边的带权图,保证图中没有自环,但可能包含重边。

给出 \(Q\) 次查询,每次查询给出 \(K\) 条边 \(B_1,B_2,\cdots ,B_K\),要求求出从节点 \(1\) 到节点 \(N\) 且这 \(K\) 条边都至少经过一次的最短路(经过边的方向和顺序任意)。

赛时 Dijkstra 状态压缩 [TLE]

赛后

由于 \(K\) 很小,因此我们可以枚举经过 \(K\) 条边的顺序和方向,提前预处理出 \(dist\) 数组即可直接计算出最短距离。

代码

#include <iostream>
#include <algorithm>
#include <cstring>
#define x first 
#define y second 

using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<int, PII> PIP;

const int N = 405, M = 200005;

LL dist[N][N];
PIP edges[M];
int n, m, q, k;
int b[10], perm[10];

int main(){
    scanf("%d%d", &n, &m);
    memset(dist, 0x3f, sizeof dist);
    for (int i = 1; i <= n; i ++ ) dist[i][i] = 0;
    for (int i = 1; i <= m; i ++ ){
        int u, v, w;
        scanf("%d%d%d", &u, &v, &w);
        dist[u][v] = dist[v][u] = min(dist[u][v], 1ll * w);
        edges[i] = {w, {u, v}};
    }

    for (int k = 1; k <= n; k ++ )
        for (int i = 1; i <= n; i ++ )
            for (int j = 1; j <= n; j ++ )
                dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
    
    scanf("%d", &q);
    while (q -- ){
        scanf("%d", &k);
        for (int i = 1; i <= k; i ++ ) scanf("%d", &b[i]), perm[i] = i;

        LL ans = 0x3f3f3f3f3f3f3f3f;
        do {
            for (int state = 0; state < (1 << k); state ++ ){
                LL res = 0, last = 1;
                for (int i = 1; i <= k; i ++ ) {
                    PIP edge = edges[b[perm[i]]];
                    int from = edge.y.x, to = edge.y.y;
                    if ((state >> i - 1) & 1) swap(from, to);
                    res += dist[last][from] + edge.x;
                    last = to;
                }
                res += dist[last][n];
                ans = min(ans, res);
            }
        } while (next_permutation(perm + 1, perm + k + 1));

        printf("%lld\n", ans);
    }

    return 0;
}

标签:typedef,dist,int,Tour,abc369,include,luoguAT
From: https://www.cnblogs.com/XiaoJuRuoUP/p/-/luoguAT_abc369_e

相关文章

  • 题解:AT_abc369_e [ABC369E] Sightseeing Tour 详细版
    题目大意给定一个NNN个点,MMM条边的无向图。其中边有边权。有......
  • ABC369
     C对于一个等差数列,它里面包含的等差数列(取这个数列的第i位~第j位),必定也是等差数列。寻找等差数列的时候,如果一个等差数列,向最左/最右加1个数后,仍是等差数列,则把它们加上。从而寻找所有场上的等差数列,必定是不重叠的,等差数列彼此独立。从而可以从1遍历到n,O(n)复杂度。对于每......
  • [ABC369G] As far as possible
    考虑删除树上一条边\((u,v,l)\),此时剩余部分构成两个连通块,如果不包含节点\(1\)的连通块中有Aoki选择的点,那个这条边的贡献至少为\(2l\)。简单构造发现,当Takahashi构造的路径恰好为Aoki选择的点和\(1\)构成的虚树时,能够取到路径长度的最小值。此时我们将题目转......
  • 8.31 晚上 ABC369 总结 & 题解
    打了一天的比赛。ABCD太水了,直接放代码链接得了,点字母就能看对应代码。E-SightseeingTour看范围$N$只有$400$,所以我们可以先用floyd搞出任意两点间的距离。对于每次询问,发现$K_i$只有$5$,所以可以直接深搜应该走哪座桥,和应该走到哪一端。时间复杂度$O(N3+QK_i......
  • OpenCV(cv::findContours())
    目录1.函数定义2.示例3.常见应用4.注意事项cv::findContours()是OpenCV中用于检测图像中的轮廓的函数。1.函数定义voidfindContours(InputOutputArrayimage,OutputArrayOfArrayscontours,OutputArrayhierarchy,intmode,intmethod......
  • Chinese tourists traveling to Morocco
    ChinesetouriststravelingtoMoroccoshouldbeawareofafewkeyaspectstoensureasafeandenjoyableexperience:1.LanguageBarrierLanguages:ArabicandBerberaretheofficiallanguages,andFrenchiswidelyspoken.Englishisspokenintouristarea......
  • ABC369F F - Gather Coins 题解
    题目链接:https://atcoder.jp/contests/abc369/tasks/abc369_f题目大意:在一个\(H\timesW\)的二维迷宫中有\(N\)枚硬币,其中第\(i\)枚硬币在\((R_i,C_i)\)(本题中,我们用\((r,c)\)表示二维迷宫中从上到下第\(r\)行从左到右第\(c\)列的那个格子)。你一开始在迷宫的左......
  • abc369 题解
    切了A~F,还挺开心(但是如果上一次把G切了的话,我就上青了QAQ比赛链接:https://atcoder.jp/contests/abc369A-369题意:给定正整数\(a,b\)(\(1\lea,b\le100\)),请问有多少个整数\(x\)满足\(a,b,x\)排序后构成等差数列。思路:观察到\(a,b\)范围很小,直接枚举\(x\)即可。......
  • ABC369
    Alink判断\(A\),\(B\)之间可不可以放一个数,如果可以就是\(3\)个,不行就是\(2\)个(左右),但是如果\(A\),\(B\)相等就只有一个。点击查看代码#include<bits/stdc++.h>usingnamespacestd;signedmain(){ inta,b; cin>>a>>b; intx=b-a; if(x!=0){ if(x%2==0......
  • 跟《经济学人》学英文:2024年08月24日这期 How to attract Indian tourists
    HowtoattractIndiantouristsDestinationsarecompetingforthetravellingrupee原文:INDIANSAREonthemove.In2019internationaldeparturesfromIndiahit27m,anumberthatwillsurelybeexceededthisyearandispredictedtoriseto90mby204......