제출 #677910

#제출 시각아이디문제언어결과실행 시간메모리
677910Tien_NoobFinancial Report (JOI21_financial)C++17
19 / 100
531 ms64672 KiB
//Make CSP great again
//Vengeance
#include <bits/stdc++.h>
#define TASK "TESTCODE"
using namespace std;
const int N = 3e5 + 1;
int a[N + 1], b[N + 1], dp[N + 1], d, n;
vector<int> f[N + 1];
set<int> s;
struct SegmentTree
{
    int tree[4 * N + 1];
    void upd(int v, int TreeL, int TreeR, int pos, int val)
    {
        if (TreeL == TreeR)
        {
            tree[v] = val;
            return ;
        }
        int mid = (TreeL + TreeR)/2;
        if (pos <= mid)
        {
            upd(v * 2, TreeL, mid, pos, val);
        }
        else
        {
            upd(v * 2 + 1, mid + 1, TreeR, pos, val);
        }
        tree[v] = max(tree[2 * v], tree[2 * v + 1]);
    }
    int get(int v, int TreeL, int TreeR, int L, int R)
    {
        if (L > R)
        {
            return 0;
        }
        if (TreeL == L && TreeR == R)
        {
            return tree[v];
        }
        int mid = (TreeL + TreeR)/2;
        return max(get(v * 2, TreeL, mid, L, min(R, mid)), get(v * 2 + 1, mid + 1, TreeR, max(L, mid + 1), R));
    }
} tree;
void read()
{
    cin >> n >> d;
    for (int i = 1; i <= n; ++ i)
    {
        cin >> a[i];
        b[i] = a[i];
        s.insert(i);
    }
    sort(b + 1, b + n + 1);
    for (int i = 1; i <= n; ++ i)
    {
        a[i] = lower_bound(b + 1, b + n + 1, a[i]) - b;
        f[a[i]].push_back(i);
    }
}
vector<int> del[N + 1];
multiset<int> val[N + 1];
void solve()
{
    for (int i = 1; i <= n; ++ i)
    {
        while(!f[i].empty())
        {
            int j = f[i].back();
            f[i].pop_back();
            while(true)
            {
                auto it = s.lower_bound(j);
                if (it == s.end() || *it > j + d)
                {
                    break;
                }
                s.erase(it);
            }
            auto it = s.lower_bound(j);
            int nxt = (it == s.end() ? n + 1 : *it);
            del[nxt].push_back(j);
        }
    }
    int res = 0;
    for (int i = 1; i <= n; ++ i)
    {
        for (int j : del[i])
        {
            val[a[j]].erase(val[a[j]].find(dp[j]));
            tree.upd(1, 1, n, a[j], val[a[j]].empty() ? 0 : *val[a[j]].rbegin());
        }
        dp[i] = tree.get(1, 1, n, 1, a[i] - 1) + 1;
        val[a[i]].insert(dp[i]);
        tree.upd(1, 1, n, a[i], *val[a[i]].rbegin());
        res = max(res, dp[i]);
    }
    cout << res;
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    if (fopen(TASK".INP", "r"))
    {
        freopen(TASK".INP", "r", stdin);
        //freopen(TASK".OUT", "w", stdout);
    }
    int t = 1;
    bool typetest = false;
    if (typetest)
    {
        cin >> t;
    }
    for (int __ = 1; __ <= t; ++ __)
    {
        //cout << "Case " << __ << ": ";
        read();
        solve();
    }
}

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'int main()':
Main.cpp:106:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  106 |         freopen(TASK".INP", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...