# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
837248 | 1075508020060209tc | Love Polygon (BOI18_polygon) | C++14 | 305 ms | 35540 KiB |
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 <bits/stdc++.h>
using namespace std;
#define int long long
int n;
vector<int>e[200005];
vector<int>ee[200005];
int dgr[200005];
int alrd[200005];
int lve[200005];
int hs[200005];
void init(){
cin>>n;
int __id=0;
map<string,int>mp;
for(int i=1;i<=n;i++){
string s;
string t;
cin>>s>>t;
if(mp[s]==0){
mp[s]=++__id;
}
if(mp[t]==0){
mp[t]=++__id;
}
lve[mp[s]]=mp[t];
e[mp[s]].push_back(mp[t]);
// ee[mp[s]].push_back(mp[t]);
// ee[mp[t]].push_back(mp[s]);
dgr[mp[t]]++;
Compilation message (stderr)
# | 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... |