結果

問題 No.629 グラフの中に眠る門松列
ユーザー hogeover30hogeover30
提出日時 2018-01-18 13:54:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 797 bytes
コンパイル時間 2,655 ms
コンパイル使用メモリ 206,092 KB
実行使用メモリ 818,176 KB
最終ジャッジ日時 2024-12-24 11:05:53
合計ジャッジ時間 31,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 11 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 11 ms
5,248 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 3 ms
5,248 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n, m; cin>>n>>m;
    vector<int> a(n);
    for(auto& e: a) cin>>e;

    vector<vector<int>> g(n);
    while (m--) {
        int u, v; cin>>u>>v;
        --u, --v;
        g[u].push_back(v);
        g[v].push_back(u);
    }

    auto is_kadomatsu=[&](int i, int j, int k)
    {
        return (a[i]<a[j] and a[j]>a[k] or a[i]>a[j] and a[j]<a[k]) and a[i]!=a[k];
    };

    function<bool(int, int, int)> dfs=[&](int i, int j, int k)
    {
        if (k>=0 && is_kadomatsu(i, j, k)) return true;
        for(int v: g[i])
            if (v!=j and dfs(v, i, j)) return true;
        return false;
    };

    for(int i=0; i<n; ++i) {
        if (dfs(i, -1, -1))
            return cout<<"YES"<<endl, 0;
    }
    cout<<"NO"<<endl;
}
0