結果

問題 No.1188 レベルX門松列
ユーザー Moss_LocalMoss_Local
提出日時 2020-08-22 14:19:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,530 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 199,468 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-23 08:40:15
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int ll
#define ll long long

#define I32_MAX 2147483647
#define I64_MAX 9223372036854775807LL
#define I64_MAX2 1223372036854775807LL
#define INF I64_MAX2
// #define MOD 1000000007
#define MOD 998244353 
#define MEM_SIZE 101010
#define DEBUG_OUT true

#define ALL(x) (x).begin(), (x).end()


template<typename T> void DEBUG(T e){if(DEBUG_OUT == false)return; std::cout << e <<" ";}
template<typename T> void DEBUG(const std::vector<T>& v){if(DEBUG_OUT == false)return;for(const auto& e : v){std::cout<< e << " "; } std::cout << std::endl;}
template<typename T> void DEBUG(const std::vector<std::vector<T> >& vv){if(DEBUG_OUT == false)return;for(const auto& v : vv){ DEBUG(v); } }
template<class T,class... Ts> void DEBUG(T d, Ts... e){if(DEBUG_OUT == false)return;DEBUG(d);DEBUG(e...);}
template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; abort();}}
template< typename T1, typename T2 > inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
template< typename T1, typename T2 > inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

void solve(void)
{
  int n;cin>>n;
  vector<int> vec (n,0);
  for (int i = 0; i < n; i++)
  {
     cin>>vec[i];
  }
  vector<int> max_point (n,0);
  vector<int> min_point (n,0);
  for (int i = 1; i < n-1; i++)
  {
    if(vec[i-1] < vec[i] and vec[i+1] < vec[i])
    {
      max_point[i] = 1;
    }
  }

  for (int i = 1; i < n-1; i++)
  {
    if(vec[i-1] > vec[i] and vec[i+1] > vec[i])
    {
      min_point[i] = 1;
    }
  }
  int res = 0;
  for (int i = 1; i < n-1; i++)
  {
    if(max_point[i] == 1)
    {
      int cnt = 0;
      int np1 = i -1;
      int np2 = i + 1;
      while(vec[np1] < vec[np1 + 1] and vec[np2-1]  > vec[np2])
      {
        cnt++;
        np1 -= 1;
        np2 += 1;
        if(np1 < 0 or np2 >= n)break;
      }
      chmax(res,cnt);
    }
  }
  
  
  for (int i = 1; i < n-1; i++)
  {
    if(min_point[i] == 1)
    {
      int cnt = 0;
      int np1 = i -1;
      int np2 = i + 1;
      while(vec[np1] > vec[np1 + 1] and vec[np2-1]  < vec[np2])
      {
        cnt++;
        np1 -= 1;
        np2 += 1;
        if(np1 < 0 or np2 >= n)break;
      }
      chmax(res,cnt);
    }
  }
  // DEBUG(max_point);
  // DEBUG(min_point);
  cout<<res<<endl;
  
  return;
}

int32_t main(int32_t argc, const char *argv[])
{
  std::ios::sync_with_stdio(false);
  std::cin.tie(0);

  std::cout << std::fixed;
  std::cout << std::setprecision(11);
  solve();

  return 0;
}
0