This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include "memory.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define ll long long
#define ld long double
#define vl vector<ll>
#define vi vector<int>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define all(v) v.begin(), v.end()
#define pb push_back
#define f first
#define s second
using namespace std;
using namespace __gnu_pbds;
typedef tree<pll, null_type, less<pll>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
void play()
{
map<char, pll>mp;
for(char c = 'A'; c <= 'Z'; c++)
mp[c] = {'-', '-'};
for(int i = 1; i <= 50; i++)
{
char a = faceup(i);
if(mp[a].f == '-')
mp[a].f = i;
else
mp[a].s = i;
}
for(auto u : mp)
{
ll x = u.s.f, y = u.s.s;
char a = faceup(x);
char b = faceup(y);
}
}
Compilation message (stderr)
memory.cpp: In function 'void play()':
memory.cpp:35:14: warning: unused variable 'a' [-Wunused-variable]
35 | char a = faceup(x);
| ^
memory.cpp:36:14: warning: unused variable 'b' [-Wunused-variable]
36 | char b = faceup(y);
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |