제출 #978032

#제출 시각아이디문제언어결과실행 시간메모리
978032steveonalex통행료 (APIO13_toll)C++17
0 / 100
0 ms348 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; #define MASK(i) (1LL << (i)) #define GETBIT(mask, i) (((mask) >> (i)) & 1) #define ALL(v) (v).begin(), (v).end() ll max(ll a, ll b){return (a > b) ? a : b;} ll min(ll a, ll b){return (a < b) ? a : b;} ll LASTBIT(ll mask){return (mask) & (-mask);} int pop_cnt(ll mask){return __builtin_popcountll(mask);} int ctz(ll mask){return __builtin_ctzll(mask);} int logOf(ll mask){return 63 - __builtin_clzll(mask);} mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count()); ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);} template <class T1, class T2> bool maximize(T1 &a, T2 b){ if (a < b) {a = b; return true;} return false; } template <class T1, class T2> bool minimize(T1 &a, T2 b){ if (a > b) {a = b; return true;} return false; } template <class T> void printArr(T& container, string separator = " ", string finish = "\n", ostream &out = cout){ for(auto item: container) out << item << separator; out << finish; } template <class T> void remove_dup(vector<T> &a){ sort(ALL(a)); a.resize(unique(ALL(a)) - a.begin()); } int main(void){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n = rngesus(4, 10), m = n - 1, k = rngesus(1, min((n-2) * (n-1) / 2, 10)); cout << n << " " << m << " " << k << "\n"; set<pair<int, int>> S; for(int i = 1; i<=n; ++i) for(int j = i + 1; j<=n; ++j) S.insert({i, j}); vector<int> perm(n-1); for(int i = 0; i<n-1; ++i) perm[i] = i + 1; shuffle(ALL(perm), rng); for(int i = 2; i<=n; ++i) { int u = rngesus(1, i-1), v = i, w = perm[i-2]; S.erase({u, v}); cout << u << " " << v << " " << w << "\n"; } vector<pair<int, int>> edge(ALL(S)); shuffle(ALL(edge), rng); while(k--){ int u = edge.back().first, v = edge.back().second; edge.pop_back(); cout << u << " " << v << "\n"; } for(int i = 1; i<=n; ++i) cout << rngesus(1, 10) << " "; cout << "\n"; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

toll.cpp: In function 'int main()':
toll.cpp:74:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   74 |     for(int i = 1; i<=n; ++i) cout << rngesus(1, 10) << " "; cout << "\n";
      |     ^~~
toll.cpp:74:62: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   74 |     for(int i = 1; i<=n; ++i) cout << rngesus(1, 10) << " "; cout << "\n";
      |                                                              ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...