結果

問題 No.2836 Comment Out
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-09 21:25:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 637 bytes
コンパイル時間 5,397 ms
コンパイル使用メモリ 312,184 KB
実行使用メモリ 17,456 KB
最終ジャッジ日時 2024-08-09 21:25:16
合計ジャッジ時間 9,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 40 ms
11,772 KB
testcase_08 AC 39 ms
11,892 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 102 ms
17,308 KB
testcase_15 AC 101 ms
17,368 KB
testcase_16 AC 101 ms
17,384 KB
testcase_17 WA -
testcase_18 AC 101 ms
17,220 KB
testcase_19 WA -
testcase_20 AC 101 ms
17,280 KB
testcase_21 AC 101 ms
17,456 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 51 ms
10,112 KB
testcase_25 AC 68 ms
15,664 KB
testcase_26 AC 29 ms
8,320 KB
testcase_27 AC 73 ms
13,468 KB
testcase_28 WA -
testcase_29 AC 66 ms
12,468 KB
testcase_30 AC 40 ms
8,960 KB
testcase_31 AC 66 ms
12,428 KB
testcase_32 WA -
testcase_33 AC 42 ms
10,752 KB
testcase_34 AC 29 ms
7,040 KB
testcase_35 AC 81 ms
14,856 KB
testcase_36 WA -
testcase_37 AC 80 ms
14,264 KB
testcase_38 AC 57 ms
11,008 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 67 ms
12,672 KB
testcase_42 WA -
testcase_43 AC 21 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 WA -
testcase_46 AC 2 ms
6,944 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 2 ms
6,940 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 2 ms
6,940 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i, 0, n) cin >> a[i];
    dsu uf(n);
    rep(i, 0, n - 1) {
        if (abs(a[i] - a[i + 1]) <= 1)
            uf.merge(i, i + 1);
    }
    auto vx = uf.groups();
    for (auto v : vx) {
        int mn = 1e9;
        for (auto x : v)
            mn = min(mn, a[x]);
        if (mn >= 2) {
            cout << "No" << endl;
            return 0;
        }
    }
    cout << "Yes" << endl;
}
0