Codeforces 28B. pSort 연결
3226 단어 문제풀이도론DFScodeforces
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
One day n cells of some array decided to play the following game. Initially each cell contains a number which is equal to it's ordinal number (starting from 1). Also each cell determined it's favourite number. On it's move i-th cell can exchange it's value with the value of some other j-th cell, if |i - j| = di, where di is a favourite number of i-th cell. Cells make moves in any order, the number of moves is unlimited.
The favourite number of each cell will be given to you. You will also be given a permutation of numbers from 1 to n. You are to determine whether the game could move to this state.
Input
The first line contains positive integer n (1 ≤ n ≤ 100) — the number of cells in the array. The second line contains n distinct integers from 1 to n — permutation. The last line contains n integers from 1 to n — favourite numbers of the cells.
Output
If the given state is reachable in the described game, output YES, otherwise NO.
Sample test(s)
input
5
5 4 3 2 1
1 1 1 1 1
output
YES
input
7
4 3 5 1 2 7 6
4 6 6 1 6 6 1
output
NO
input
7
4 2 5 1 3 7 6
4 6 6 1 6 6 1
output
YES
모든cell과 교환할 수 있는cell 사이에 한 변이 있고 마지막에 모든cell과permutation이 연결되면 답은YES이고 그렇지 않으면 NO이다.
#include <iostream>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <map>
#include <set>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
#define max_int INT_MAX / 2
#define max_long 0xFFFFFFFFFFFFFFFLL / 2
#define two(a) (1 << (a))
#define eps 1e-6
#define FF(i, a, b) for (int i = (a); i <= (b); i++)
#define FFD(i, a, b) for (int i = (a); i >= (b); i--)
const int OO=1e9;
const int INF=1e9;
int n;
vector<int>a[111];
int p[111];
int f[111];
bool g[111][111];
bool ok;
bool dfs(int bg,int u,int ed)
{
g[bg][u]=true;
if (u==ed) return true;
int len=a[u].size();
int v;
FF(i, 0, len-1)
{
v=a[u][i];
if (!g[bg][v])
{
if (dfs(bg,v,ed)) return true;
}
}
return false;
}
int main()
{
memset(g,0,sizeof(g));
cin>>n;
FF(i, 1, n)
{
cin>>p[i];
}
FF(i, 1, n)
{
cin>>f[i];
if (i+f[i]<=n)
{
a[i].push_back(i+f[i]);
a[i+f[i]].push_back(i);
}
if (i-f[i]>=1)
{
a[i].push_back(i-f[i]);
a[i-f[i]].push_back(i);
}
}
ok=true;
FF(i ,1, n)
{
if (!dfs(i,i,p[i]))
{
ok=false;
break;
}
}
if (ok) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
49일차 - 2022.04.20Baekjoon에서 문제풀이 1) 문제 : 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제/ 첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다. 첫째 줄부터 N번째 줄까지 차례대로 별...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.