# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
563298 | JANCARAPAN | Memory (IOI10_memory) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fi first
#define se second
#define ii pair<int,int>
#define vi vector<int>
#define vvi vector<vi>
#define vvii vector<vector<ii>>
#define pb push_back
#define vpi vector<ii>
#define forcin for(int i = 0; i<n; ++i) cin>>v[i];
#define pq priority_queue<ii>
#define mp make_pair
#define ld long double
#define all(a) (a).begin(),(a).end()
#define print(v) for (auto e : v) cout << e << " ";
#define endl '\n'
const int INF = LLONG_MAX;
const int MOD = 1000000007;
const int MAXN = 100005;
void play(){
map<int,char> m;
int ans = 0;
for (int i=1; i<=50; i++){
char c = faceup(i);
m[i] = c;
}
for (char c = 'a'; c<='y'; c++){
int pos1=-1, pos2=-1;
for (auto e : m){
if (e.second == c && pos1 == -1) pos1 = e.first;
else pos2 = e.first;
}
char f = faceup(pos1);
char k = faceup(pos2);
}
}