// Problem: C - Hedgehog Daniyar and Algorithms
// Contest: Virtual Judge - Yosik IOI contest #1
// URL: https://vjudge.net/contest/601761#problem/C
// Memory Limit: 256 MB
// Time Limit: 3000 ms
//
// Powered by CP Editor (https://cpeditor.org)
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define sz(x) (int)x.size()
#define all(v) (v).begin(),(v).end()
#define rall(v) ((v).rbegin()), ((v).rend())
#define out(v) for(auto& i : v) cout << i << ' ';
#define F first
#define S second
#define int long long
const ll N = 5000 + 17;
const ll MOD = 1e9 + 7;
const string alf = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int a[N] , b[N];
void solve (){
int n , m;
cin >> n >> m;
int ok = 1;
for(int i = 1; i <= n; i ++){
cin >> a[i];
}
for(int x = 1; x <= m; x ++){
int l ,r , k;
cin >> l >> r >> k;
for(int i = l ; i <= r; i ++){
b[i] = a[i];
}
for (int j = l; j <= r; j++) {
for (int i = l; i < r; i++) {
if (b[i] > b[i + 1] && b[i] + b[i + 1] <= k) {
swap(b[i], b[i + 1]);
}
}
}
int ok = 1;
for(int i= l; i < r; i ++){
if (b[i] > b[i + 1]){
ok = 0;
break;
}
}
cout << ok << endl;
}
}
signed main(){
// freopen("ones.in" , "r" , stdin) ;
// freopen("ones.out" , "w" , stdout) ;
ios::sync_with_stdio(false);
cin.tie(0);
int T = 1;
// int cs = 1;
// cin >>T;
while (T --){
// cout <<"Case " << cs ++<< ":" << endl;
solve ();
// cout <<endl;
}
}
Compilation message
sortbooks.cpp: In function 'void solve()':
sortbooks.cpp:31:6: warning: unused variable 'ok' [-Wunused-variable]
31 | int ok = 1;
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
348 KB |
Output is correct |
6 |
Correct |
38 ms |
348 KB |
Output is correct |
7 |
Correct |
36 ms |
348 KB |
Output is correct |
8 |
Correct |
54 ms |
348 KB |
Output is correct |
9 |
Correct |
17 ms |
344 KB |
Output is correct |
10 |
Correct |
49 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
348 KB |
Output is correct |
6 |
Correct |
38 ms |
348 KB |
Output is correct |
7 |
Correct |
36 ms |
348 KB |
Output is correct |
8 |
Correct |
54 ms |
348 KB |
Output is correct |
9 |
Correct |
17 ms |
344 KB |
Output is correct |
10 |
Correct |
49 ms |
344 KB |
Output is correct |
11 |
Correct |
1710 ms |
468 KB |
Output is correct |
12 |
Execution timed out |
3054 ms |
348 KB |
Time limit exceeded |
13 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
348 KB |
Output is correct |
6 |
Correct |
38 ms |
348 KB |
Output is correct |
7 |
Correct |
36 ms |
348 KB |
Output is correct |
8 |
Correct |
54 ms |
348 KB |
Output is correct |
9 |
Correct |
17 ms |
344 KB |
Output is correct |
10 |
Correct |
49 ms |
344 KB |
Output is correct |
11 |
Correct |
1710 ms |
468 KB |
Output is correct |
12 |
Execution timed out |
3054 ms |
348 KB |
Time limit exceeded |
13 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
348 KB |
Output is correct |
6 |
Correct |
38 ms |
348 KB |
Output is correct |
7 |
Correct |
36 ms |
348 KB |
Output is correct |
8 |
Correct |
54 ms |
348 KB |
Output is correct |
9 |
Correct |
17 ms |
344 KB |
Output is correct |
10 |
Correct |
49 ms |
344 KB |
Output is correct |
11 |
Correct |
1710 ms |
468 KB |
Output is correct |
12 |
Execution timed out |
3054 ms |
348 KB |
Time limit exceeded |
13 |
Halted |
0 ms |
0 KB |
- |