Submission #1012491

#TimeUsernameProblemLanguageResultExecution timeMemory
1012491HishamAlshehriDifference (POI11_roz)C++17
90 / 100
548 ms18648 KiB
#include <bits/stdc++.h> // #include <ext/pb_ds/assoc_container.hpp> // #include <ext/pb_ds/tree_policy.hpp> using namespace std; // using namespace __gnu_pbds; #define int long long #define mod 1000000007 #define base 7001 #define base2 757 // #define pi acos(-1) #define double long double // #define ordered_set tree<pair<int, int>, null_type, less<pair<int,int>>, rb_tree_tag,tree_order_statistics_node_update> // #define ordered_multiset tree<int, null_type, less_equal<int>, rb_tree_tag,tree_order_statistics_node_update> #pragma GCC optimize("O3,Ofast,unroll-loops") #pragma GCC target("avx2,sse3,sse4,avx") constexpr int maxn = 1000001; const int N = 1 << (int)(ceil(log2(maxn))); struct max_sub_sum { int mx, flag; }; int n; string s; vector<int>v, idx[200]; void build(char a, char b) { if (!idx[a].size() || !idx[b].size()) return; int i = 0, j = 0; while (i < idx[a].size() && j < idx[b].size()) { if (idx[a][i] < idx[b][j]) { v.push_back(1); i++; } else { v.push_back(-1); j++; } } while (i < idx[a].size()) { v.push_back(1); i++; } while (j < idx[b].size()) { v.push_back(-1); j++; } return; } signed main() { cin.tie(0) -> sync_with_stdio(0); cin >> n >> s; for (int i = 0; i < s.size(); i++) { idx[s[i]].push_back(i); } int mx = 0; for (char a = 'a'; a <= 'z'; a++) { for (char b = 'a' ; b <= 'z'; b++) { build(a, b); max_sub_sum ans; ans.mx = 0; ans.flag = 0; int sum = 0; for (int i = 0; i < v.size(); i++) { if (v[i] + sum > -1) { sum += v[i]; if (v[i] < 0) ans.flag = 1; if (ans.flag) ans.mx = max(ans.mx, sum); } else ans.flag = 0; //cout << ans.mx << " "; } mx = max(ans.mx, mx); v.clear(); } } cout << mx; }

Compilation message (stderr)

roz.cpp: In function 'void build(char, char)':
roz.cpp:34:14: warning: array subscript has type 'char' [-Wchar-subscripts]
   34 |     if (!idx[a].size() || !idx[b].size())
      |              ^
roz.cpp:34:32: warning: array subscript has type 'char' [-Wchar-subscripts]
   34 |     if (!idx[a].size() || !idx[b].size())
      |                                ^
roz.cpp:37:20: warning: array subscript has type 'char' [-Wchar-subscripts]
   37 |     while (i < idx[a].size() && j < idx[b].size())
      |                    ^
roz.cpp:37:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |     while (i < idx[a].size() && j < idx[b].size())
      |            ~~^~~~~~~~~~~~~~~
roz.cpp:37:41: warning: array subscript has type 'char' [-Wchar-subscripts]
   37 |     while (i < idx[a].size() && j < idx[b].size())
      |                                         ^
roz.cpp:37:35: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |     while (i < idx[a].size() && j < idx[b].size())
      |                                 ~~^~~~~~~~~~~~~~~
roz.cpp:39:17: warning: array subscript has type 'char' [-Wchar-subscripts]
   39 |         if (idx[a][i] < idx[b][j])
      |                 ^
roz.cpp:39:29: warning: array subscript has type 'char' [-Wchar-subscripts]
   39 |         if (idx[a][i] < idx[b][j])
      |                             ^
roz.cpp:50:20: warning: array subscript has type 'char' [-Wchar-subscripts]
   50 |     while (i < idx[a].size())
      |                    ^
roz.cpp:50:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |     while (i < idx[a].size())
      |            ~~^~~~~~~~~~~~~~~
roz.cpp:55:20: warning: array subscript has type 'char' [-Wchar-subscripts]
   55 |     while (j < idx[b].size())
      |                    ^
roz.cpp:55:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   55 |     while (j < idx[b].size())
      |            ~~^~~~~~~~~~~~~~~
roz.cpp: In function 'int main()':
roz.cpp:67:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   67 |     for (int i = 0; i < s.size(); i++)
      |                     ~~^~~~~~~~~~
roz.cpp:69:17: warning: array subscript has type 'char' [-Wchar-subscripts]
   69 |         idx[s[i]].push_back(i);
      |                 ^
roz.cpp:81:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   81 |             for (int i = 0; i < v.size(); i++)
      |                             ~~^~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...