我是靠谱客的博主 矮小鼠标,最近开发中收集的这篇文章主要介绍>A->B->C-,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

https://ac.nowcoder.com/acm/contest/322/D

题解:乱搞,有就行了

/*
*@Author:   STZG
*@Language: C++
*/
#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG
#define RI register int
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=100000+10;
const int MOD=1e9+7;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,q,ans;
int a[N];
char str;
int main()
{
#ifdef DEBUG
	freopen("input.in", "r", stdin);
	//freopen("output.out", "w", stdout);
#endif
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&a[i]);
    }
    for(int i=1;i<=n;i++){
        if(a[a[a[i]]]==i){
            cout << "YES" << endl;
            return 0;
        }
    }
    cout << "NO" << endl;
    //cout << "Hello world!" << endl;
    return 0;
}

 

最后

以上就是矮小鼠标为你收集整理的>A->B->C-的全部内容,希望文章能够帮你解决>A->B->C-所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部