結果

問題 No.360 増加門松列
ユーザー nanophoto12nanophoto12
提出日時 2016-04-18 00:06:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,254 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 85,432 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 02:35:55
合計ジャッジ時間 1,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <set>
#include <queue>
#include <string>
#include <iomanip>
using namespace std;

#define ll long long int
#define tiii tuple<int,int,int>
#define pii pair<ll,ll>

int main()
{
    vector<int> vs(7);
    for(int i = 0;i < 7;i++)
    {
        cin >> vs[i];
    }
    do
    {
        bool ok = true;
        for(int i = 0;i < 5;i++)
        {
            int left = vs[i];
            int middle = vs[i + 1];
            int right = vs[i + 2];
            if(middle < left && middle < right)
            {
                if(left >= right)
                {
                    ok = false;
                    break;
                }
            }
            else if(middle > left && middle > right)
            {
                if(left >= right)
                {
                    ok = false;
                    break;
                }
            }
            else
            {
                ok = false;
                break;
            }
        }
        if(ok)
        {
            cout << "YES" << endl;
            return 0;
        }
    }while(next_permutation(vs.begin(), vs.end()));
    cout << "NO" << endl;
    return 0;
}
0