Submission #270647

# Submission time Handle Problem Language Result Execution time Memory
270647 2020-08-17T20:37:43 Z Valera_Grinenko Memory (IOI10_memory) C++17
0 / 100
1 ms 256 KB
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimization ("unroll-loops")
#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <set>
#include <stack>
#include <map>
#include <iomanip>
#include <cmath>
#include <queue>
#include <bitset>
#include <numeric>
#include <array>
#include <cstring>
#include <random>
#include <chrono>
#include "grader.h"
#include "memory.h"
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define make_unique(x) sort(all((x))); (x).resize(unique(all((x))) - (x).begin())
typedef long long ll;
typedef long double ld;
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
void play() {

  map<char, int> have;

  for(int i = 1; i <= 50; i += 2) {
    char f = faceup(i);
    if(have[f]) faceup(have[f]);
    else {
      have[f] = i;
      char s = faceup(i + 1);
      if(have[s]) i--;
      else have[s] = i + 1;
    }
  }

}

Compilation message

memory.cpp:3: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
    3 | #pragma GCC optimization ("unroll-loops")
      |
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Incorrect
2 Halted 0 ms 0 KB -