Submission #63512

#TimeUsernameProblemLanguageResultExecution timeMemory
63512Just_Solve_The_ProblemElection (BOI18_election)C++11
0 / 100
6 ms376 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long main() { int n; string s; scanf("%d", &n); cin >> s; s = " " + s; int q; scanf("%d", &q); while (q--) { int l, r; int ans = 0; scanf("%d %d", &l, &r); int b = 0, b1 = 0;; for (int i = l; i <= r; i++) { b += (s[i] == 'T' ? -1 : 1); ans = min(ans, b); b1 += (s[r - i + 1] == 'T' ? -1 : 1); ans = min(ans, b1); } printf("%d\n", -ans); } }

Compilation message (stderr)

election.cpp:7:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
election.cpp: In function 'int main()':
election.cpp:10:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &n);
   ~~~~~^~~~~~~~~~
election.cpp:14:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &q);
   ~~~~~^~~~~~~~~~
election.cpp:18:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &l, &r);
     ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...