結果
| 問題 |
No.408 五輪ピック
|
| コンテスト | |
| ユーザー |
sntea
|
| 提出日時 | 2016-08-10 00:38:25 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 4,448 bytes |
| コンパイル時間 | 2,927 ms |
| コンパイル使用メモリ | 192,912 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-07 08:23:44 |
| 合計ジャッジ時間 | 20,841 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 WA * 2 TLE * 2 -- * 8 |
ソースコード
#ifdef LOCAL111
#else
#define NDEBUG
#endif
#include <bits/stdc++.h>
const int INF = 1e8;
using namespace std;
#define endl '\n'
#define ALL(a) (a).begin(),(a).end()
#define SZ(a) int((a).size())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) FOR(i,0,n)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define RBP(i,a) for(auto& i : a)
#ifdef LOCAL111
#define DEBUG(x) cout<<#x<<": "<<(x)<<endl
template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
#else
#define DEBUG(x) true
template<typename T> void dpite(T a, T b){ return; }
#endif
#define F first
#define S second
#define SNP string::npos
#define WRC(hoge) cout << "Case #" << (hoge)+1 << ": "
#define rangej(a,b,c) ((a) <= (c) and (c) < (b))
#define rrangej(b,c) rangej(0,b,c)
template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}
typedef pair<int,int> P;
typedef long long int LL;
typedef unsigned long long ULL;
typedef pair<LL,LL> LP;
void ios_init(){
//cout.setf(ios::fixed);
//cout.precision(12);
#ifdef LOCAL111
return;
#endif
ios::sync_with_stdio(false); cin.tie(0);
}
//library
typedef int cost_t;
class Edge {
public:
int to;
cost_t cost;
Edge(){
}
Edge(int x,cost_t y){
to = x;
cost = y;
}
bool operator< (const Edge& x) const {
return cost < x.cost;
}
bool operator> (const Edge& x) const {
return cost > x.cost;
}
};
class Graph {
private:
//const long long int INF = (long long)1e18;
vector<vector<Edge> > v;
int n;
public:
Graph(int x){
n = x;
v = vector<vector<Edge> >(x);
}
vector<Edge>& operator[](int x){
return v[x];
}
const vector<Edge>& operator[](int x) const {
return v[x];
}
int size() const {
return n;
}
void add_edge(int from, Edge e){
v[from].push_back(e);
}
void add_edge(int from, int to, cost_t cost){
add_edge(from,Edge(to,cost));
}
};
vector<cost_t> dijkstra(int from, const Graph& v) {
vector<cost_t> dist(v.size(),INF);
priority_queue<Edge,vector<Edge>,greater<Edge>> que;
que.push(Edge(from,0));
while(!que.empty()){
Edge e = que.top();
que.pop();
if(dist[e.to] == INF){
dist[e.to] = e.cost;
for(auto to : v[e.to]){
if(dist[to.to] == INF)
que.push(Edge(to.to, e.cost+to.cost));
}
}
}
return dist;
}
vector<cost_t> bellmanford(int from, const Graph& g){
vector<cost_t> res(g.size(),INF);
res[from] = 0;
bool conf = true;
int cnt = 0;
while(conf){
conf = false;
for(int i = 0; i < g.size(); i++){
if(res[i] != INF)
for(const auto& e : g[i]){
if(res[e.to] > res[i]+e.cost){
conf = true;
res[e.to] = res[i]+e.cost;
}
}
}
if(cnt > g.size()+5) return vector<cost_t>();
cnt++;
}
return res;
}
Graph prim(const Graph g){
using T = tuple<cost_t, int, int>;
priority_queue<T, vector<T>, greater<T>> qu;
int n = g.size();
assert(n != 0);
vector<bool> added(n,false);
qu.emplace(0,0,0);
Graph res(n);
while(!qu.empty()){
int from, to;
cost_t cost;
tie(cost, from, to) = qu.top();
qu.pop();
if(!added[to]){
added[to] = true;
res.add_edge(from, to, cost);
res.add_edge(to, from, cost);
for(const auto &e : g[to]){
if(!added[e.to]){
qu.emplace(e.cost, to, e.to);
}
}
}
}
return res;
}
//liblary
unordered_map<int,vector<int>> mp;
void dfs(const Graph g, int p, int pre, int dep){
if(dep == 2){
mp[p].push_back(pre);
return;
}
RBP(e,g[p]){
if(e.to != pre) dfs(g,e.to,p,dep+1);
}
}
int main()
{
ios_init();
int n,m;
cin >> n >> m;
Graph g(n);
vector<tuple<int,int>> v(m);
REP(i,m){
DEBUG(i);
int a,b;
cin >> a >> b;
a--; b--;
g.add_edge(a,b,1);
g.add_edge(b,a,1);
v[i] = make_tuple(a,b);
}
dfs(g,0,-1,0);
string ans = "NO";
REP(i,m){
DEBUG(i);
int a,b;
tie(a,b) = v[i];
DEBUG(a); DEBUG(b);
dpite(ALL(mp[a]));
dpite(ALL(mp[b]));
bool f1 = false, f2 = false;
if(SZ(mp[a]) <= 2) REP(i,SZ(mp[a])){
if(mp[a][i] != b){
f1 = true;
}
}
else f1 = true;
if(SZ(mp[b]) <= 2) REP(i,SZ(mp[b])){
if(mp[b][i] != a){
f2 = true;
}
}
else f2 = true;
if(f1 and f2) ans = "YES";
}
cout << ans << endl;
return 0;
}
sntea