ICPC-CAMP day1 D.Around the world

Around the world

题目连接:

Description

给你一个n*n的矩阵,然后a[i][j]表示i,j是否有一条边

然后让你构造一个序列,使得i到(i+1)%n这两个点之间最多经过k个边

Input

n<=500,k>=3

Output

n个数

Sample Input

4 3
0100
1010
0101
0010

Sample Output

1 3 2 4

Hint

题意

题解:

构造很简单(雾

我们随便拿一个dfs一波,然后搜的时候,深度为奇数的时候,就输出

回溯的时候,深度为偶数的时候,就输出

然后就AC了

这样构造,显然最远的两个点的距离最多为3

太神了

代码

#include
using namespace std;

vector E[505];
int n,k;
char str[505];
int vis[505];
void dfs(int x,int deep)
{
    vis[x]=1;
    if(deep%2==1)
        cout<

你可能感兴趣的:(ICPC-CAMP day1 D.Around the world)