제출 #702566

#제출 시각아이디문제언어결과실행 시간메모리
702566boris_mihov메기 농장 (IOI22_fish)C++17
9 / 100
1083 ms60580 KiB
#include "fish.h" #include <algorithm> #include <iostream> #include <cassert> #include <numeric> #include <vector> typedef long long llong; const int MAXN = 100000 + 10; const int MAXM = 600000 + 10; struct Position { int y; int idx; llong in; llong left; llong right; Position(int _y, int _idx, llong _in, llong _left, llong _right) { y = _y; idx = _idx; left = _left; right = _right; in = _in; } }; int cnt; int n, m; llong dp[MAXM][2]; std::vector <Position> pos[MAXN]; std::vector <Position> posUncleared[MAXN]; std::vector <std::pair <int,int>> fish[MAXN]; llong max_weights(int N, int M, std::vector <int> X, std::vector <int> Y, std::vector <int> W) { n = N; m = M; for (int i = 0 ; i < m ; ++i) { fish[X[i] + 1].emplace_back(Y[i] + 1, W[i]); } for (int x = 1 ; x <= n ; ++x) { std::sort(fish[x].begin(), fish[x].end()); for (const auto &[y, w] : fish[x]) { if (x != 1) { posUncleared[x - 1].push_back({y, 0, 0LL, 0LL, 0LL}); } if (x != n) { posUncleared[x + 1].push_back({y, 0, 0LL, 0LL, 0LL}); } } } for (int x = 1 ; x <= n ; ++x) { std::sort(posUncleared[x].begin(), posUncleared[x].end(), [&](Position a, Position b) { return a.y < b.y; }); for (Position p : posUncleared[x]) { if (!pos[x].empty() && pos[x].back().y == p.y) { continue; } pos[x].push_back(p); } int ptrL = 0; int ptrR = 0; int ptrIN = 0; llong inSum = 0; llong leftSum = 0; llong rightSum = 0; for (Position &p : pos[x]) { while (ptrL < fish[x - 1].size() && fish[x - 1][ptrL].first <= p.y) { leftSum += fish[x - 1][ptrL].second; ptrL++; } while (ptrR < fish[x + 1].size() && fish[x + 1][ptrR].first <= p.y) { rightSum += fish[x + 1][ptrR].second; ptrR++; } while (ptrIN < fish[x].size() && fish[x][ptrIN].first <= p.y) { inSum += fish[x][ptrIN].second; ptrIN++; } p.in = inSum; p.left = leftSum; p.right = rightSum; } } for (int x = 1 ; x <= n ; ++x) { for (Position &p : pos[x]) { p.idx = ++cnt; } } llong max = 0; for (int x = n - 1 ; x >= 1 ; --x) { if (x + 3 <= n) { for (const Position &curr : pos[x + 3]) { max = std::max(max, dp[curr.idx][0] + curr.left + curr.right); } } for (int type = 0 ; type < 2 ; ++type) { for (const Position &curr : pos[x]) { dp[curr.idx][type] = max; for (const Position &next : pos[x + 1]) { if (next.y < curr.y) { dp[curr.idx][type] = std::max(dp[curr.idx][type], dp[next.idx][1] + next.right - next.in); } else if (type == 0) { dp[curr.idx][type] = std::max(dp[curr.idx][type], dp[next.idx][0] + next.left + next.right - curr.in - curr.right); } } if (x + 2 <= n) { for (const Position &next : pos[x + 2]) { if (next.y < curr.y) { dp[curr.idx][type] = std::max(dp[curr.idx][type], dp[next.idx][0] + next.right - next.left); } else { dp[curr.idx][type] = std::max(dp[curr.idx][type], dp[next.idx][0] + next.left + next.right - curr.right); } } } } } } for (int x = std::min(n, 3) ; x >= 1 ; --x) { for (const Position &curr : pos[x]) { max = std::max(max, dp[curr.idx][0] + curr.left + curr.right); } } return max; }

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

fish.cpp: In function 'llong max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:86:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   86 |             while (ptrL < fish[x - 1].size() && fish[x - 1][ptrL].first <= p.y)
      |                    ~~~~~^~~~~~~~~~~~~~~~~~~~
fish.cpp:92:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   92 |             while (ptrR < fish[x + 1].size() && fish[x + 1][ptrR].first <= p.y)
      |                    ~~~~~^~~~~~~~~~~~~~~~~~~~
fish.cpp:98:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   98 |             while (ptrIN < fish[x].size() && fish[x][ptrIN].first <= p.y)
      |                    ~~~~~~^~~~~~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...