結果

問題 No.284 門松と魔法(2)
コンテスト
ユーザー okaduki
提出日時 2015-09-19 00:02:21
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,353 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,405 ms
コンパイル使用メモリ 179,644 KB
実行使用メモリ 187,620 KB
最終ジャッジ日時 2026-04-02 15:08:05
合計ジャッジ時間 1,969 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>

using namespace std;

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;

//container util
//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i)
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define SORT(c) sort((c).begin(),(c).end())

//repetition
//------------------------------------------
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

//constant
//--------------------------------------------
const double EPS = 1e-10;
const double PI  = acos(-1.0);

int main(){
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  int N; cin >> N;
  VI hs(N);
  REP(i,N) cin >> hs[i];

  int h = hs[0], n = 1, ans = 0;
  FOR(i,1,N){
	if(n%2){
	  if(h < hs[i])
		++n;
	}
	else{
	  if(h > hs[i])
		++n;
	}
	h = hs[i];
  }
  ans = max(ans, n);

  h = hs[0], n = 1;
  FOR(i,1,N){
	if(n%2==0){
	  if(h < hs[i])
		++n;
	}
	else{
	  if(h > hs[i])
		++n;
	}
	h = hs[i];
  }
  ans = max(ans, n);

  if(ans < 3) cout << 0 << endl;
  else cout << ans << endl;

  return 0;
}
0