結果

問題 No.2343 (l+r)/2
ユーザー Heart_BlueHeart_Blue
提出日時 2023-06-09 21:18:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,220 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 124,988 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-10 12:46:42
合計ジャッジ時間 1,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 46 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <cctype>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <fstream>
#include <numeric>
#include <iomanip>
#include <bitset>
#include <list>
#include <stdexcept>
#include <functional>
#include <utility>
#include <ctime>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
#define MEM(a,b) memset((a),(b),sizeof(a))
const LL INF = 1e9 + 7;
const int N = 2e5 + 10;
pair<int, int> vp[N];
int main()
{
	//freopen("input.txt", "r", stdin);
	//freopen("output.txt", "w", stdout);
	int ncase;
	scanf("%d", &ncase);
	while (ncase--)
	{
		int n;
		scanf("%d", &n);
		vector<int> v(n);
		for (auto& x : v)
			scanf("%d", &x);
		while (v.size() >= 2 && v[v.size() - 1] == v[v.size() - 2])
			v.pop_back();
		reverse(v.begin(), v.end());
		while (v.size() >= 2 && v[v.size() - 1] == v[v.size() - 2])
			v.pop_back();
		int cnt = 1;
		for (int i = 1; i < v.size(); i++)
		{
			if (v[i] != v[i - 1])
				cnt++;
		}
		if (cnt == 2 || cnt < v.size())
		{
			puts("Yes");
		}
		else puts("No");
		
	}
	return 0;
}
0