Submission #1055738

#TimeUsernameProblemLanguageResultExecution timeMemory
1055738panTopovi (COCI15_topovi)C++17
60 / 120
280 ms65540 KiB
#include <bits/stdc++.h> //#include "bits_stdc++.h" //#include <ext/pb_ds/assoc_container.hpp> //#include <ext/pb_ds/tree_policy.hpp> #define endl '\n' #define f first #define s second #define pb push_back #define mp make_pair #define lb lower_bound #define ub upper_bound #define input(x) scanf("%lld", &x); #define input2(x, y) scanf("%lld%lld", &x, &y); #define input3(x, y, z) scanf("%lld%lld%lld", &x, &y, &z); #define input4(x, y, z, a) scanf("%lld%lld%lld%lld", &x, &y, &z, &a); #define print(x, y) printf("%lld%c", x, y); #define show(x) cerr << #x << " is " << x << endl; #define show2(x,y) cerr << #x << " is " << x << " " << #y << " is " << y << endl; #define show3(x,y,z) cerr << #x << " is " << x << " " << #y << " is " << y << " " << #z << " is " << z << endl; #define all(x) x.begin(), x.end() #define discretize(x) sort(x.begin(), x.end()); x.erase(unique(x.begin(), x.end()), x.end()); #define FOR(i, x, n) for (ll i =x; i<=n; ++i) #define RFOR(i, x, n) for (ll i =x; i>=n; --i) using namespace std; //using namespace __gnu_pbds; //#define ordered_set tree<int, null_type, less<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> typedef long long ll; typedef long double ld; typedef pair<ld, ll> pd; typedef pair<string, ll> psl; typedef pair<ll, ll> pi; typedef pair<ll, pi> pii; typedef pair<pi, pi> piii; ll ans = 0; unordered_map<ll, unordered_map<ll, ll> > val; unordered_map<ll, ll> zorx, zory, freq1, freq2; void insert(ll x, ll y, ll k) { ans += freq1[zorx[x]]*freq2[zorx[x]]; if (zory[y]!=zorx[x]) ans += freq1[zory[y]]*freq2[zory[y]]; freq1[zorx[x]]--; freq2[zory[y]]--; ans -= freq1[zorx[x]]*freq2[zorx[x]]; if (zory[y]!=zorx[x]) ans -= freq1[zory[y]]*freq2[zory[y]]; zorx[x]^=k; zory[y]^=k; ans += freq1[zorx[x]]*freq2[zorx[x]]; if (zory[y]!=zorx[x]) ans += freq1[zory[y]]*freq2[zory[y]]; freq1[zorx[x]]++; freq2[zory[y]]++; ans -= freq1[zorx[x]]*freq2[zorx[x]]; if (zory[y]!=zorx[x]) ans -= freq1[zory[y]]*freq2[zory[y]]; } int main() { ll n, k,p, r, c, x, r2, c2; input3(n, k, p); freq1[0] = freq2[0] = n; for (ll i=0; i<k; ++i) { input3(r, c, x); insert(r, c, x); val[r][c] = x; //show(ans); //show2(freq1[0], freq2[0]); //show2(freq1[1], freq2[1]); } for (ll i=0; i<p; ++i) { input4(r, c, r2, c2); insert(r, c, val[r][c]); insert(r2, c2, val[r][c]); val[r2][c2] = val[r][c]; val[r][c] = 0; print(ans, '\n'); //show2(freq1[0], freq2[0]); //show2(freq1[1], freq2[1]); //show2(freq1[2], freq2[2]); } return 0; }

Compilation message (stderr)

topovi.cpp: In function 'int main()':
topovi.cpp:14:30: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 | #define input3(x, y, z) scanf("%lld%lld%lld", &x, &y, &z);
      |                         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
topovi.cpp:61:2: note: in expansion of macro 'input3'
   61 |  input3(n, k, p);
      |  ^~~~~~
topovi.cpp:14:30: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 | #define input3(x, y, z) scanf("%lld%lld%lld", &x, &y, &z);
      |                         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
topovi.cpp:65:3: note: in expansion of macro 'input3'
   65 |   input3(r, c, x);
      |   ^~~~~~
topovi.cpp:15:33: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 | #define input4(x, y, z, a) scanf("%lld%lld%lld%lld", &x, &y, &z, &a);
      |                            ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
topovi.cpp:74:3: note: in expansion of macro 'input4'
   74 |   input4(r, c, r2, c2);
      |   ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...