# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
315398 | monus1042 | Zamjena (COCI18_zamjena) | C++17 | 238 ms | 14820 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// NK
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<ll> vll;
#define eb emplace_back
#define pb push_back
#define pob pop_back
#define psf push_front
#define pof pop_front
#define mkp make_pair
#define all(x) x.begin(), x.end()
#define Bolivia_is_nice ios::sync_with_stdio(false), cin.tie(nullptr)
void solve(){
vector<string> a, b;
int n; cin>>n;
for (int i=0; i<n; i++){
string x; cin>>x;
a.pb(x);
}
for (int i=0; i<n; i++){
string x; cin>>x;
b.pb(x);
}
vi g[n*2+10];
vector<bool> vis(n*2+10);
map<string, int> helper;
map<int, string> vic;
int pos = 0;
for (int i=0; i<n; i++){
auto ff = helper.find(a[i]);
if (ff == helper.end()) helper[a[i]] = pos, vic[pos++] = a[i];
ff = helper.find(b[i]);
if (ff == helper.end()) helper[b[i]] = pos, vic[pos++] = b[i];
}
for (int i=0; i<n; i++){
g[helper[a[i]]].pb(helper[b[i]]);
g[helper[b[i]]].pb(helper[a[i]]);
}
for (auto i=helper.begin(); i!=helper.end(); i++){
if (!vis[i->second]){
stack<int> dfs;
dfs.push(i->second);
vis[i->second] = true;
set<int> checker;
while(!dfs.empty()){
int u = dfs.top();
dfs.pop();
if ('0' <= vic[u][0] && vic[u][0] <= '9') checker.insert(stoi(vic[u]));
for (int j=0; j<g[u].size(); j++){
int v = g[u][j];
if (!vis[v]){
vis[v] = true;
dfs.push(v);
}
}
}
if (checker.size() > 1){
cout<<"NE"<<'\n';
return;
}
}
}
cout<<"DA\n";
}
int main(){
Bolivia_is_nice;
int t; t = 1; //cin>>t;
while(t--)
solve();
return 0;
}
/*
~/.emacs
*/
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |