2020中国大学生程序设计竞赛(CCPC) - 网络选拔赛 1010 Reports
程序员文章站
2022-06-07 11:43:46
...
2020中国大学生程序设计竞赛(CCPC) - 网络选拔赛 1010 Reports(签到题)
如果相邻的任意两个数相同的话,则输出NO,反之输出YES。
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define ll long long
//#define int ll
#define INF 0x3f3f3f3f
using namespace std;
int read()
{
int w = 1, s = 0;
char ch = getchar();
while (ch < '0' || ch>'9') { if (ch == '-') w = -1; ch = getchar(); }
while (ch >= '0' && ch <= '9') { s = s * 10 + ch - '0'; ch = getchar(); }
return s * w;
}
//------------------------ 以上是我常用模板与刷题几乎无关 ------------------------//
int main()
{
int t = read();
while(t--) {
int n = read();
int a = read();
bool flag = false;
int tmp;
n--;
while(n--) {
tmp = a;
a = read();
if(tmp == a) {
flag = true;
}
}
if (flag)
printf("NO\n");
else
printf("YES\n");
}
return 0;
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while(t-- != 0) {
int n = sc.nextInt();
int a = sc.nextInt();
boolean flag = false;
int tmp;
n--;
while(n-- != 0) {
tmp = a;
a = sc.nextInt();
if (tmp == a) {
flag = true;
}
}
if(flag)
System.out.println("NO");
else
System.out.println("YES");
}
}
}
推荐阅读
-
2020CCPC网络选拔赛 1010 Reports
-
2018中国大学生程序设计竞赛 - 网络选拔赛 1003 Dream(hdu 6440)(费马小定理)
-
2020中国大学生程序设计竞赛(CCPC) - 网络选拔赛 1010 Reports
-
@2018中国大学生程序设计竞赛 - 网络选拔赛: 1010: YJJ's Salesman(树状数组)
-
(HDU6440)2018中国大学生程序设计竞赛 - 网络选拔赛 - 1003 - Dream - (费马小定理)
-
2018中国大学生程序设计竞赛 – 网络选拔赛 1004 Find Integer [费马大定理]
-
HDU-2017中国大学生程序设计竞赛-网络选拔赛-1001-Vertex Cover
-
HDU-2017中国大学生程序设计竞赛-网络选拔赛-1003-Friend-Graph
-
2018中国大学生程序设计竞赛 - 网络选拔赛 D Find Integer (规律)
-
2018中国大学生程序设计竞赛 - 网络选拔赛(部分)(补题)