QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#550283 | #7120. Soccer | thangthang | 0 | 0ms | 0kb | C++20 | 1.7kb | 2024-09-07 11:18:04 | 2024-09-07 11:18:04 |
answer
// author : thembululquaUwU
// 3.9.2024
#include <bits/stdc++.h>
#define left __left__
#define right __right__
#define pb push_back
#define fi first
#define se second
#define endl '\n'
using namespace std;
using ll = long long;
using ii = pair <int, int>;
using vi = vector <int>;
const int MaxN = 2e5;
const int mod = 1e9 + 7;
void maxl(auto &a, auto b) {a = max(a, b);}
void minl(auto &a, auto b) {a = min(a, b);}
int biggest_stadium(int n, vector <vi> f){
vector <int> dp(n), h(n);
vector <vi> cur(n); int res = 0;
for (int r = 0; r < n; ++ r){
for (int c = 0; c < n; ++ c){
if (f[r][c]){
h[c] = -1;
dp[c] = 0;
}
else cur[++ h[c]].pb(c);
}
vi left(n), right(n);
stack <int> stk;
for (int c = 0; c < n; ++ c){
while (stk.size() && h[c] <= h[stk.top()]) stk.pop();
left[c] = stk.empty() ? -1 : stk.top();
stk.push(c);
}
while (stk.size()) stk.pop();
for (int c = n - 1; c >= 0; -- c){
while (stk.size() && h[c] <= h[stk.top()]) stk.pop();
right[c] = stk.empty() ? n : stk.top();
stk.push(c);
}
for (int hh = 0; hh < n; ++ hh){
for (int c : cur[hh]){
int len = right[c] - left[c] - 1;
dp[c] += len;
if (left[c] > -1) maxl(dp[c], dp[left[c]] + len * (h[c] - h[left[c]]));
if (right[c] < n) maxl(dp[c], dp[right[c]] + len * (h[c] - h[right[c]]));
maxl(res, dp[c]);
}
cur[hh].clear();
}
}
return res;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Runtime Error
Test #1:
score: 0
Runtime Error
input:
R0R7sb2atQWJ6SAWOjw4ZG7Gwgo5zl9L 1 0
output:
result:
Subtask #2:
score: 0
Runtime Error
Test #10:
score: 0
Runtime Error
input:
R0R7sb2atQWJ6SAWOjw4ZG7Gwgo5zl9L 3 0 0 0 0 1 0 0 1 1
output:
result:
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 0
Skipped
Dependency #3:
0%
Subtask #5:
score: 0
Skipped
Dependency #4:
0%
Subtask #6:
score: 0
Skipped
Dependency #1:
0%