Submission #487532

#TimeUsernameProblemLanguageResultExecution timeMemory
487532freddy645645Hedgehog Daniyar and Algorithms (IZhO19_sortbooks)C++17
Compilation error
0 ms0 KiB
       
using namespace std;
template<typename T1, typename T2>inline void chkmin(T1 &x, T2 y) { if (x > y) x = y; }
template<typename T1, typename T2>inline void chkmax(T1 &x, T2 y) { if (x < y) x = y; } 
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const pair<T, U> &_p) { _out << _p.first << ' ' << _p.second; return _out; }
template<typename T, typename U> inline istream &operator>> (istream &_in, pair<T, U> &_p) { _in >> _p.first >> _p.second; return _in; }
template<typename T> inline ostream &operator<< (ostream &_out, const vector<T> &_v) { if (_v.empty()) { return _out; } _out << _v.front(); for (auto _it = ++_v.begin(); _it != _v.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline istream &operator>> (istream &_in, vector<T> &_v) { for (auto &_i : _v) { _in >> _i; } return _in; }
template<typename T> inline ostream &operator<< (ostream &_out, const set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const unordered_set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T> inline ostream &operator<< (ostream &_out, const unordered_multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
template<typename T, typename U> inline ostream &operator<< (ostream &_out, const unordered_map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
#define sz(c) (int)(c).size()
#define all(c) (c).begin(), (c).end()
#define rall(c) (c).rbegin(), (c).rend()
#define left left228
#define right right228
#define rank rank228
#define y1 y1228                                                         
#define read(FILENAME) freopen((FILENAME + ".in").c_str(), "r", stdin)
#define write(FILENAME) freopen((FILENAME + ".out").c_str(), "w", stdout)
#define files(FILENAME) read(FILENAME), write(FILENAME)
#define pb push_back
const string FILENAME = "input";
const int MAXN = 1000508;
 
#define _getchar_nolock getchar
 
char readchar() {
    char c = _getchar_nolock();
    while (c <= 33) {
        c = _getchar_nolock();
    }
    return c;
}
 
 
int readint() {
    char c = _getchar_nolock();
    while (c <= 33) {
        c = _getchar_nolock();
    }
    bool sign = false;
    if (c == '-') {
        sign = true;
        c = _getchar_nolock();
    }
    int t = 0;
    while (c >= '0' && c <= '9') {
        t = (t << 3) + (t << 1) + c - '0';
        c = _getchar_nolock();
    }
    return (sign ? -t: t);
}
 
int n, k;
int a[MAXN];
int fen[MAXN];
int ans[MAXN];
 
void inc(int i, int val) {
    fen[i] = val;
    for (int j = i; j < n; j |= (j + 1)) {
        chkmax(fen[j], val);
    }
}
 
 
int get(int i) {
    int res = 0;
    for (int j = i; j >= 0; j = (j & (j + 1)) - 1) {
        chkmax(res, fen[j]);
    }
    return res;
}
 
 
vector<pair<pair<int, int>, int> > z[MAXN];
 
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
   // read(FILENAME);
    n = readint(), k = readint();
    for (int i = 0; i < n; i++) {
        a[i] = readint();
    }
    vector<int> g;
    vector<pair<int, int> > kek;
    for (int i = 0; i < n; i++) {
        while (!g.empty() && a[g.back()] <= a[i]) {
            g.pop_back();
        }
        if (!g.empty()) {
            kek.pb({g.back(), i});
        }
        g.pb(i);
    }
    sort(all(kek));
    for (int i = 0; i < k; i++) {
        int l = readint(), r = readint(), x = readint();
        z[l - 1].pb({{r - 1, x}, i});
    }
    int uk = sz(kek) - 1;
    for (int i = n - 1; i >= 0; i--) {
        while (uk >= 0 && kek[uk].first >= i) {
            inc(kek[uk].second, a[kek[uk].first] + a[kek[uk].second]);
            uk--;
        }
        for (auto x: z[i]) {
            ans[x.second] = get(x.first.first) <= x.first.second;
        }
    }
    for (int i = 0; i < k; i++) {
        cout << ans[i] << '\n';
    }
    return 0; 
}
 

Compilation message (stderr)

sortbooks.cpp:5:41: error: 'ostream' does not name a type
    5 | template<typename T, typename U> inline ostream &operator<< (ostream &_out, const pair<T, U> &_p) { _out << _p.first << ' ' << _p.second; return _out; }
      |                                         ^~~~~~~
sortbooks.cpp:6:41: error: 'istream' does not name a type
    6 | template<typename T, typename U> inline istream &operator>> (istream &_in, pair<T, U> &_p) { _in >> _p.first >> _p.second; return _in; }
      |                                         ^~~~~~~
sortbooks.cpp:7:29: error: 'ostream' does not name a type
    7 | template<typename T> inline ostream &operator<< (ostream &_out, const vector<T> &_v) { if (_v.empty()) { return _out; } _out << _v.front(); for (auto _it = ++_v.begin(); _it != _v.end(); ++_it) { _out << ' ' << *_it; } return _out; }
      |                             ^~~~~~~
sortbooks.cpp:8:29: error: 'istream' does not name a type
    8 | template<typename T> inline istream &operator>> (istream &_in, vector<T> &_v) { for (auto &_i : _v) { _in >> _i; } return _in; }
      |                             ^~~~~~~
sortbooks.cpp:9:29: error: 'ostream' does not name a type
    9 | template<typename T> inline ostream &operator<< (ostream &_out, const set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
      |                             ^~~~~~~
sortbooks.cpp:10:29: error: 'ostream' does not name a type
   10 | template<typename T> inline ostream &operator<< (ostream &_out, const multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
      |                             ^~~~~~~
sortbooks.cpp:11:29: error: 'ostream' does not name a type
   11 | template<typename T> inline ostream &operator<< (ostream &_out, const unordered_set<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
      |                             ^~~~~~~
sortbooks.cpp:12:29: error: 'ostream' does not name a type
   12 | template<typename T> inline ostream &operator<< (ostream &_out, const unordered_multiset<T> &_s) { if (_s.empty()) { return _out; } _out << *_s.begin(); for (auto _it = ++_s.begin(); _it != _s.end(); ++_it) { _out << ' ' << *_it; } return _out; }
      |                             ^~~~~~~
sortbooks.cpp:13:41: error: 'ostream' does not name a type
   13 | template<typename T, typename U> inline ostream &operator<< (ostream &_out, const map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
      |                                         ^~~~~~~
sortbooks.cpp:14:41: error: 'ostream' does not name a type
   14 | template<typename T, typename U> inline ostream &operator<< (ostream &_out, const unordered_map<T, U> &_m) { if (_m.empty()) { return _out; } _out << '(' << _m.begin()->first << ": " << _m.begin()->second << ')'; for (auto _it = ++_m.begin(); _it != _m.end(); ++_it) { _out << ", (" << _it->first << ": " << _it->second << ')'; } return _out; }
      |                                         ^~~~~~~
sortbooks.cpp:26:7: error: 'string' does not name a type
   26 | const string FILENAME = "input";
      |       ^~~~~~
sortbooks.cpp: In function 'char readchar()':
sortbooks.cpp:29:25: error: 'getchar' was not declared in this scope
   29 | #define _getchar_nolock getchar
      |                         ^~~~~~~
sortbooks.cpp:32:14: note: in expansion of macro '_getchar_nolock'
   32 |     char c = _getchar_nolock();
      |              ^~~~~~~~~~~~~~~
sortbooks.cpp:1:1: note: 'getchar' is defined in header '<cstdio>'; did you forget to '#include <cstdio>'?
  +++ |+#include <cstdio>
    1 | 
sortbooks.cpp: In function 'int readint()':
sortbooks.cpp:29:25: error: 'getchar' was not declared in this scope
   29 | #define _getchar_nolock getchar
      |                         ^~~~~~~
sortbooks.cpp:41:14: note: in expansion of macro '_getchar_nolock'
   41 |     char c = _getchar_nolock();
      |              ^~~~~~~~~~~~~~~
sortbooks.cpp:29:25: note: 'getchar' is defined in header '<cstdio>'; did you forget to '#include <cstdio>'?
   29 | #define _getchar_nolock getchar
      |                         ^~~~~~~
sortbooks.cpp:41:14: note: in expansion of macro '_getchar_nolock'
   41 |     char c = _getchar_nolock();
      |              ^~~~~~~~~~~~~~~
sortbooks.cpp: At global scope:
sortbooks.cpp:80:1: error: 'vector' does not name a type
   80 | vector<pair<pair<int, int>, int> > z[MAXN];
      | ^~~~~~
sortbooks.cpp: In function 'int main()':
sortbooks.cpp:84:5: error: 'ios_base' has not been declared
   84 |     ios_base::sync_with_stdio(false);
      |     ^~~~~~~~
sortbooks.cpp:85:5: error: 'cin' was not declared in this scope
   85 |     cin.tie(0);
      |     ^~~
sortbooks.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
  +++ |+#include <iostream>
    1 | 
sortbooks.cpp:86:5: error: 'cout' was not declared in this scope
   86 |     cout.tie(0);
      |     ^~~~
sortbooks.cpp:86:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
sortbooks.cpp:92:5: error: 'vector' was not declared in this scope
   92 |     vector<int> g;
      |     ^~~~~~
sortbooks.cpp:1:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
  +++ |+#include <vector>
    1 | 
sortbooks.cpp:92:12: error: expected primary-expression before 'int'
   92 |     vector<int> g;
      |            ^~~
sortbooks.cpp:93:12: error: 'pair' was not declared in this scope
   93 |     vector<pair<int, int> > kek;
      |            ^~~~
sortbooks.cpp:1:1: note: 'std::pair' is defined in header '<utility>'; did you forget to '#include <utility>'?
  +++ |+#include <utility>
    1 | 
sortbooks.cpp:93:17: error: expected primary-expression before 'int'
   93 |     vector<pair<int, int> > kek;
      |                 ^~~
sortbooks.cpp:95:17: error: 'g' was not declared in this scope
   95 |         while (!g.empty() && a[g.back()] <= a[i]) {
      |                 ^
sortbooks.cpp:98:14: error: 'g' was not declared in this scope
   98 |         if (!g.empty()) {
      |              ^
sortbooks.cpp:99:13: error: 'kek' was not declared in this scope
   99 |             kek.pb({g.back(), i});
      |             ^~~
sortbooks.cpp:101:9: error: 'g' was not declared in this scope
  101 |         g.pb(i);
      |         ^
sortbooks.cpp:103:14: error: 'kek' was not declared in this scope
  103 |     sort(all(kek));
      |              ^~~
sortbooks.cpp:16:17: note: in definition of macro 'all'
   16 | #define all(c) (c).begin(), (c).end()
      |                 ^
sortbooks.cpp:103:5: error: 'sort' was not declared in this scope; did you mean 'short'?
  103 |     sort(all(kek));
      |     ^~~~
      |     short
sortbooks.cpp:106:9: error: 'z' was not declared in this scope
  106 |         z[l - 1].pb({{r - 1, x}, i});
      |         ^
sortbooks.cpp:114:22: error: 'z' was not declared in this scope
  114 |         for (auto x: z[i]) {
      |                      ^