# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
596141 |
2022-07-14T12:12:07 Z |
jjang36524 |
Sushi (JOI16_sushi) |
C++14 |
|
90 ms |
7188 KB |
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
vector<int>pos;
int arr[400100];
struct pq
{
int* q;
int r;
void init(vector<int>v)
{
q = (int*)calloc(v.size()+2, sizeof(int));
int i;
for (i = 0; i < v.size(); i++)
q[i + 1] = v[i];
r = v.size();
}
inline int up(int n)
{
if (q[1] <= n)
{
return n;
}
int rv = q[1];
int i = 1;
T:
if (i * 2 > r)
{
q[i] = n;
return rv;
}
if (q[i * 2] <= q[i * 2 + 1])
{
if (q[i * 2 + 1] <= n)
{
q[i] = n;
return rv;
}
q[i] = q[i * 2 + 1];
i = i * 2 + 1;
}
else
{
if (q[i * 2] <= n)
{
q[i] = n;
return rv;
}
q[i] = q[i * 2];
i = i * 2;
}
goto T;
}
};
pq poss[50100];
int q[25100][3];
int main()
{
int N, M;
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> N >> M;
int i;
for (i = 0; i < N; i++)
{
cin >> arr[i];
}
for (i = 0; i < M; i++)
{
int a, b, c;
cin >> a >> b >> c;
a--;
b--;
if (b + 1 == a)
{
a = 0;
b = N - 1;
}
q[i][0] = a;
q[i][1] = b;
q[i][2] = c;
pos.push_back(a);
pos.push_back(b + 1);
}
pos.push_back(0);
pos.push_back(N);
sort(pos.begin(), pos.end());
pos.erase(unique(pos.begin(), pos.end()), pos.end());
for (i = 0; i < pos.size() - 1; i++)
{
vector<int>x;
int j;
for (j = pos[i]; j < pos[i + 1]; j++)
{
x.push_back(arr[j]);
}
sort(x.begin(), x.end());
reverse(x.begin(), x.end());
poss[i].init(x);
}
int lm = pos.size() - 1;
for (i = 0; i < M; i++)
{
int a = lower_bound(pos.begin(), pos.end(), q[i][0]) - pos.begin();
int b = lower_bound(pos.begin(), pos.end(), q[i][1] + 1) - pos.begin();
int j;
int c = q[i][2];
if (q[i][0] > q[i][1])
{
for (j = a; j < lm; j++)
{
c = poss[j].up(c);
}
for (j = 0; j < b; j++)
{
c = poss[j].up(c);
}
}
else
{
for (j = a; j < b; j++)
{
c = poss[j].up(c);
}
}
cout << c << '\n';
}
}
Compilation message
sushi.cpp: In member function 'void pq::init(std::vector<int>)':
sushi.cpp:16:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for (i = 0; i < v.size(); i++)
| ~~^~~~~~~~~~
sushi.cpp: In function 'int main()':
sushi.cpp:92:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
92 | for (i = 0; i < pos.size() - 1; i++)
| ~~^~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
468 KB |
Output is correct |
2 |
Correct |
4 ms |
468 KB |
Output is correct |
3 |
Correct |
4 ms |
468 KB |
Output is correct |
4 |
Correct |
4 ms |
468 KB |
Output is correct |
5 |
Correct |
3 ms |
468 KB |
Output is correct |
6 |
Incorrect |
4 ms |
468 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
81 ms |
7152 KB |
Output is correct |
2 |
Correct |
81 ms |
7128 KB |
Output is correct |
3 |
Correct |
35 ms |
7152 KB |
Output is correct |
4 |
Correct |
78 ms |
7152 KB |
Output is correct |
5 |
Correct |
54 ms |
7104 KB |
Output is correct |
6 |
Correct |
60 ms |
7116 KB |
Output is correct |
7 |
Correct |
58 ms |
7100 KB |
Output is correct |
8 |
Correct |
55 ms |
7120 KB |
Output is correct |
9 |
Correct |
34 ms |
7188 KB |
Output is correct |
10 |
Correct |
47 ms |
7152 KB |
Output is correct |
11 |
Correct |
35 ms |
7172 KB |
Output is correct |
12 |
Correct |
48 ms |
7152 KB |
Output is correct |
13 |
Correct |
79 ms |
7152 KB |
Output is correct |
14 |
Correct |
90 ms |
7152 KB |
Output is correct |
15 |
Correct |
54 ms |
7104 KB |
Output is correct |
16 |
Correct |
79 ms |
7148 KB |
Output is correct |
17 |
Correct |
61 ms |
7104 KB |
Output is correct |
18 |
Correct |
63 ms |
7156 KB |
Output is correct |
19 |
Correct |
57 ms |
7132 KB |
Output is correct |
20 |
Correct |
56 ms |
7128 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
468 KB |
Output is correct |
2 |
Correct |
4 ms |
468 KB |
Output is correct |
3 |
Correct |
4 ms |
468 KB |
Output is correct |
4 |
Correct |
4 ms |
468 KB |
Output is correct |
5 |
Correct |
3 ms |
468 KB |
Output is correct |
6 |
Incorrect |
4 ms |
468 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |