結果

問題 No.2343 (l+r)/2
ユーザー requiemrequiem
提出日時 2023-06-09 21:16:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,563 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 168,384 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 12:45:52
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for(int i = 0; i < (int)(n); ++i)
#define rep1(i, n) for(int i = 1; i <= (int)(n); ++i)
#define memset(arr, x) memset(arr, x, sizeof(arr))

using namespace std;
using i64 = long long;
    
constexpr int inf = 1.01e9;
constexpr i64 llinf = 1.01e18;
  namespace io {
	const int SIZE = (1 << 21) + 1;
	char ibuf[SIZE], *iS, *iT, obuf[SIZE], *oS = obuf, *oT = oS + SIZE - 1, c, qu[55]; int f, qr;
	// getchar
	#define gc() (iS == iT ? (iT = (iS = ibuf) + fread (ibuf, 1, SIZE, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++)
	// print the remaining part
	inline void flush () {
		fwrite (obuf, 1, oS - obuf, stdout);
		oS = obuf;
	}
	// putchar
	inline void putc (char x) {
		*oS ++ = x;
		if (oS == oT) flush ();
	}
	template<typename A>
	inline bool read (A &x) {
		for (f = 1, c = gc(); c < '0' || c > '9'; c = gc()) if (c == '-') f = -1;else if(c==EOF)return 0;
		for (x = 0; c <= '9' && c >= '0'; c = gc()) x = x * 10 + (c & 15); x *= f;
		return 1;
	}
	inline bool read (char &x) {
		while((x=gc())==' '||x=='\n' || x=='\r');
		return x!=EOF;
	}
	inline bool read(char *x){
		while((*x=gc())=='\n' || *x==' '||*x=='\r');
		if(*x==EOF)return 0;
		while(!(*x=='\n'||*x==' '||*x=='\r'||*x==EOF))*(++x)=gc();
		*x=0;
		return 1;
	}
	template<typename A,typename ...B>
	inline bool read(A &x,B &...y){
		return read(x)&&read(y...);
	}
	template<typename A>
	inline bool write (A x) {
		if (!x) putc ('0'); if (x < 0) putc ('-'), x = -x;
		while (x) qu[++ qr] = x % 10 + '0',  x /= 10;
		while (qr) putc (qu[qr --]);
		return 0;
	}
	inline bool write (char x) {
		putc(x);
		return 0;
	}
	inline bool write(const char *x){
		while(*x){putc(*x);++x;}
		return 0;
	}
	inline bool write(char *x){
		while(*x){putc(*x);++x;}
		return 0;
	}
	template<typename A,typename ...B>
	inline bool write(A x,B ...y){
		return write(x)||write(y...);
	}
	//no need to call flush at the end manually!
	struct Flusher_ {~Flusher_(){flush();}}io_flusher_;
}
using io :: read;
using io :: putc;
using io :: write;

void solve(){
  int n;
  read(n);
  vector<int> a(n);
  int cnt = 0;
  rep(i, n){ 
    read(a[i]);
    if(a[i]) cnt++;
  }
  int cnt2 = n - cnt, x = 0, y = 0;
  rep(i, n){
    if(a[i] == 0){
      x++;
      while(i < n && a[i] == 0) i++;
      --i;
    }else{
      y++;
      while(i < n && a[i] == 1) i++;
      --i;
    }
  }
  write((cnt >= x && y <= x) || (cnt2 >= y && x <= cnt) ? "Yes\n" : "No\n");
}

signed main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  int tt = 1;
  read(tt);
  rep(i, tt) solve();
}

0