結果
問題 | No.1880 Many Ways |
ユーザー | milanis48663220 |
提出日時 | 2022-03-18 22:53:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 3,086 bytes |
コンパイル時間 | 1,401 ms |
コンパイル使用メモリ | 133,800 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 07:54:43 |
合計ジャッジ時間 | 14,652 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } const ll INF = 1e+9; using P = pair<int, int>; struct edge{ int to; ll cost; }; void dijkstra(vector<vector<int>> G){ priority_queue<P, vector<P>, greater<P>> que; int n = G.size(); vector<ll> d(n, INF); int s = 0; d[s] = 0; que.push(P(0, s)); while(!que.empty()){ P p = que.top();que.pop(); int v = p.second; if(d[v] < p.first) continue; for(int i = 0; i < G[v].size(); i++){ int to = G[v][i]; if(d[v] + 1 < d[to]){ d[to] = d[v] + 1; que.push(P(d[to], to)); } } } vector<ll> dp(n); vector<P> vp(n); for(int i = 0; i < n; i++) vp[i] = P(d[i], i); sort(vp.begin(), vp.end()); dp[0] = 1; for(auto [_, v]: vp){ if(v == s) continue; for(int to: G[v]){ if(d[v] == d[to]+1) dp[v] += dp[to]; } } cout << dp[n-1] << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; ll a; cin >> a; int n = 121; vector<P> edges; vector<vector<int>> g(n); auto add_edge = [&](int u, int v){ if(u > v) swap(u, v); edges.push_back(P(u, v)); g[u].push_back(v); g[v].push_back(u); }; auto idx = [&](int i, int j){ return i*3+j+1; }; int s = 0; add_edge(s, idx(0, 0)); add_edge(s, idx(0, 1)); if(a%2 == 1){ add_edge(idx(0, 1), idx(0, 2)); } for(int i = 1; i < 40; i++){ for(int j = 0; j < 2; j++){ for(int k = 0; k < 2; k++){ add_edge(idx(i-1, j), idx(i, k)); } } add_edge(idx(i-1, 2), idx(i, 2)); if((1ll<<i)&a){ add_edge(idx(i, 1), idx(i, 2)); } } cout << n << ' ' << edges.size() << endl; for(auto [a, b]: edges) cout << a+1 << ' ' << b+1 << endl; }