# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
770484 | raysh07 | Love Polygon (BOI18_polygon) | C++17 | 118 ms | 11148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define INF (int)1e18
#define f first
#define s second
mt19937_64 RNG(chrono::steady_clock::now().time_since_epoch().count());
int n;
const int N = 1e5 + 69;
map <string, int> mp;
int c[N];
bool used[N];
int cnt = 0;
int f(string x){
if (mp.find(x) != mp.end()) return mp[x];
else return mp[x] = ++cnt;
}
void Solve()
{
cin >> n;
for (int i = 1; i <= n; i++){
string u, v; cin >> u >> v;
int a = f(u), b = f(v);
c[a] = b;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |