Submission #63517

#TimeUsernameProblemLanguageResultExecution timeMemory
63517Just_Solve_The_ProblemElection (BOI18_election)C++11
0 / 100
9 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; for (int i = l; i <= r; i++) { b += ((s[i] == 'T') ? -1 : 1); ans = min(ans, b); } b = 0; for (int i = r; i >= l; i--) { b += ((s[i] == 'T') ? -1 : 1); ans = min(ans, b); } ans *= -1; 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...