Submission #966167

# Submission time Handle Problem Language Result Execution time Memory
966167 2024-04-19T13:17:04 Z blackslex Alternating Heights (CCO22_day1problem1) C++17
0 / 25
1000 ms 12688 KB
#include<bits/stdc++.h>

using namespace std;

int n, k, q, x, y;

int main() {
    scanf("%d %d %d", &n, &k, &q);
    vector<int> a(n + 5), dp(n + 5); iota(dp.begin(), dp.end(), 0);
    for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
    for (int i = 1; i <= n; i++) {
        auto ck = [&] (int l, int r) {
            vector<vector<int>> v(n + 5, vector<int>());
            for (int i = l; i <= r; i++) {
                if (i != l && (i & 1) == (l & 1)) v[a[i]].emplace_back(a[i - 1]);
                if (i != r && (i & 1) == (l & 1)) v[a[i]].emplace_back(a[i + 1]);
            }
            vector<int> f(n + 5), f2(n + 5);
            function<int(int, int)> cyc = [&] (int cur, int par) {
                if (f[cur]) return f2[cur] = 1; f[cur] = 1;
                for (auto &e: v[cur]) if (cyc(e, cur)) return (f2[cur] ? 0 : f2[cur] = 1);
                return 0;
            };
            cyc(a[l], 0);
            for (int i = l; i <= r; i++) if (f2[a[i]]) return 1;
            return 0;
        };
        int l = i, r = n;
        while (l <= r) {
            int mid = (l + r) >> 1;
            if (!ck(i, mid)) l = mid + 1;
            else r = mid - 1;
        }
        dp[i] = r;
    }
    while (q--) scanf("%d %d", &x, &y), printf("%s\n", dp[x] >= y ? "YES" : "NO");
}

Compilation message

Main.cpp: In lambda function:
Main.cpp:20:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   20 |                 if (f[cur]) return f2[cur] = 1; f[cur] = 1;
      |                 ^~
Main.cpp:20:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   20 |                 if (f[cur]) return f2[cur] = 1; f[cur] = 1;
      |                                                 ^
Main.cpp: In function 'int main()':
Main.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |     scanf("%d %d %d", &n, &k, &q);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:10:39: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   10 |     for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
      |                                  ~~~~~^~~~~~~~~~~~~
Main.cpp:36:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   36 |     while (q--) scanf("%d %d", &x, &y), printf("%s\n", dp[x] >= y ? "YES" : "NO");
      |                 ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 496 ms 12688 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 204 ms 10832 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 344 KB Output is correct
2 Execution timed out 1073 ms 604 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 496 ms 12688 KB Output isn't correct
2 Halted 0 ms 0 KB -