Submission #366297

#TimeUsernameProblemLanguageResultExecution timeMemory
366297arman_ferdousMonochrome Points (JOI20_monochrome)C++17
25 / 100
36 ms512 KiB
#include <bits/stdc++.h> #include <bits/extc++.h> using namespace std; using namespace __gnu_pbds; #define fi first #define se second #define pb push_back #define sz(v) (int)v.size() #define all(v) v.begin(),v.end() #define dbg(x) cerr << #x << " is " << x << "\n"; #define cum cerr << "came\n"; using ll = long long; using ii = pair<ll,ll>; using oset = tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>; const int N = 2010; int n; char s[N]; struct event { int x, y; int type; bool operator<(event o) const { return x < o.x; } }; vector<event> e; oset os; int vis[N]; vector<pair<int, int>> segs; ll getcost() { e.clear(); for(auto it : segs) { e.pb({it.fi, it.se, 0}); e.pb({it.se, it.fi, 1}); } sort(all(e)); ll ret = 0; for(auto i : e) { if(i.type == 0) { ret += os.order_of_key(i.y); os.insert(i.y); } else { os.erase(i.x); } } os.clear(); return ret; } ll solve(int p, int q) { segs.clear(); for(int i = 0; i < n + n; i++) vis[i] = 0; segs.pb({p, q}); vis[p] = vis[q] = 1; int matched = 1; int i = p, j = q; while(matched < n) { while(vis[i] || s[i] != s[p]) { i++; if(i == n + n) i = 0; } while(s[i] == s[j] || vis[j]) { j++; if(j == n + n) j = 0; } vis[j] = vis[i] = 1; segs.pb({min(i, j), max(i, j)}); matched++; } // for(auto it : segs) // cout << it.fi + 1 << " " << it.se + 1 << endl; // cout << "cost = " << getcost() << endl; return getcost(); } int main() { ll ans = 0; scanf("%d %s", &n, s); for(int i = 1; i < n + n; i++) if(s[0] != s[i]) { ans = max(ans, solve(0, i)); // cout << "/////////\n"; } printf("%lld\n", ans); return 0; }

Compilation message (stderr)

monochrome.cpp: In function 'int main()':
monochrome.cpp:91:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   91 |   scanf("%d %s", &n, s);
      |   ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...