Submission #344117

#TimeUsernameProblemLanguageResultExecution timeMemory
344117NurlykhanHedgehog Daniyar and Algorithms (IZhO19_sortbooks)C++17
0 / 100
3099 ms4332 KiB
#include <bits/stdc++.h> using namespace std; const int N = (int)1e6 + 10; int n, m; int w[N]; int main() { scanf("%d%d", &n, &m); for (int i = 1; i <= n; i++) { scanf("%d", &w[i]); } while (m--) { int l, r, k; scanf("%d%d%d", &l, &r, &k); int mx = 0, mxx = 0; for (int i = r; i >= l; i--) { if (mxx < w[i]) { mx = max(mx, mxx + w[i]); mxx = w[i]; } } if (k >= mx) { printf("1\n"); } else { printf("0\n"); } } return 0; }

Compilation message (stderr)

sortbooks.cpp: In function 'int main()':
sortbooks.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
sortbooks.cpp:13:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   13 |         scanf("%d", &w[i]);
      |         ~~~~~^~~~~~~~~~~~~
sortbooks.cpp:17:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   17 |         scanf("%d%d%d", &l, &r, &k);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~
#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...