답안 #924661

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
924661 2024-02-09T11:31:21 Z sleepntsheep 지구 온난화 (NOI13_gw) C++17
0 / 40
179 ms 12372 KB
#include <iostream>
#include <numeric>
#include <fstream>
#include <iomanip>
#include <cmath>
#include <cassert>
#include <cstring>
#include <vector>
#include <algorithm>
#include <deque>
#include <set>
#include <utility>
#include <array>
#include <complex>

using u32 = unsigned;
using i32 = int;
using i64 = long long;
using u64 = unsigned long long;
using f64 = double;
using f80 = long double;

using namespace std;
using pt = complex<f80>;
#define ALL(x) begin(x), end(x)
#define ShinLena cin.tie(nullptr)->sync_with_stdio(false);
#define N 1000005

int n, a[N], f[N], b[N] ,c ,z;

int main()
{
    ShinLena;
    cin >> n;
    for (int i = 1; i <= n; ++i) cin >> a[i];
    iota(b, b+1+n, 0);
    sort(b+1, b+1+n, [](int i, int j){ return a[i] > a[j]; });
    if (a[b[1]] > 0) z = 1;

    for (int i = 1; i <= n; ++i)
    {
        int j = b[i];

        ++c;
        if (j > 1 and !f[j-1]) --c;
        if (j < n and !f[j+1]) --c;

        if (i == n or a[j] != a[b[i]+1]) z = max(z, c);
        f[j] = 1;
    }

    cout << z;

    return 0;
}


# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 4956 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 4956 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 179 ms 12172 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 178 ms 12372 KB Output isn't correct
2 Halted 0 ms 0 KB -