結果
問題 | No.1480 Many Complete Graphs |
ユーザー | ningenMe |
提出日時 | 2021-04-16 21:49:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,440 bytes |
コンパイル時間 | 2,815 ms |
コンパイル使用メモリ | 226,424 KB |
実行使用メモリ | 24,144 KB |
最終ジャッジ日時 | 2024-07-03 04:14:43 |
合計ジャッジ時間 | 8,330 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 14 ms
10,988 KB |
testcase_14 | AC | 10 ms
7,680 KB |
testcase_15 | AC | 95 ms
14,048 KB |
testcase_16 | AC | 52 ms
12,380 KB |
testcase_17 | AC | 52 ms
10,976 KB |
testcase_18 | AC | 14 ms
9,984 KB |
testcase_19 | AC | 60 ms
10,496 KB |
testcase_20 | AC | 96 ms
10,304 KB |
testcase_21 | AC | 13 ms
8,832 KB |
testcase_22 | AC | 8 ms
5,888 KB |
testcase_23 | AC | 25 ms
14,208 KB |
testcase_24 | AC | 263 ms
12,968 KB |
testcase_25 | AC | 297 ms
17,088 KB |
testcase_26 | AC | 313 ms
19,308 KB |
testcase_27 | AC | 264 ms
12,408 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
evil_aftercontest.txt | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using int128 = __int128_t; using int64 = long long; using int32 = int; using uint128 = __uint128_t; using uint64 = unsigned long long; using uint32 = unsigned int; #define ALL(obj) (obj).begin(),(obj).end() template<class T> using priority_queue_reverse = priority_queue<T,vector<T>,greater<T>>; constexpr int64 MOD = 1'000'000'000LL + 7; //' constexpr int64 MOD2 = 998244353; constexpr int64 HIGHINF = 1'000'000'000'000'000'000LL; constexpr int64 LOWINF = 1'000'000'000'000'000LL; //' constexpr long double PI = 3.1415926535897932384626433L; template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);} template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));} template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const deque<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} template <class T> void chmax(T& a, const T b){a=max(a,b);} template <class T> void chmin(T& a, const T b){a=min(a,b);} vector<string> split(const string &str, const char delemiter) {vector<string> res;stringstream ss(str);string buffer; while( getline(ss, buffer, delemiter) ) res.push_back(buffer); return res;} inline constexpr int msb(int x) {return x?31-__builtin_clz(x):-1;} inline constexpr int64 ceil_div(const int64 a,const int64 b) {return (a+(b-1))/b;}// return ceil(a/b) void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} /** * @url * @est */ int main() { cin.tie(0);ios::sync_with_stdio(false); int N,M; cin >> N >> M; vector<vector<int>> edges(N+1+M); vector<int64> C(M); for(int i=0;i<M;++i) { int K; cin >> K; cin >> C[i]; for(int j=0;j<K;++j) { int s; cin >> s; edges[s].push_back(i+N+1); edges[i+N+1].push_back(s); } } priority_queue_reverse<pair<pair<int64,int>,int>> pq; vector<int64> dp1(N+1,LOWINF); vector<unordered_map<int,int64>> dp2(N+1+M); dp1[1] = 0; pq.push({{0,0},1}); while(pq.size()) { auto p = pq.top(); pq.pop(); int64 cost = p.first.first; int pre = p.first.second; int from = p.second; if(N+1<=from) { if(dp2[from][pre] < cost) continue; for(int to:edges[from]) { if(dp1[to] > dp2[from][pre] + (to+pre+1)/2) { dp1[to] = dp2[from][pre] + (to+pre+1)/2; pq.push({{dp1[to],0},to}); } } } else { if(dp1[from] < cost) continue; for(int to:edges[from]) { if(!dp2[to].count(from)) dp2[to][from] = LOWINF; if(dp2[to][from] > dp1[from] + C[to-(N+1)]) { dp2[to][from] = dp1[from] + C[to-(N+1)]; pq.push({{dp2[to][from],from},to}); } } } } int64 ans = dp1[N]; if(ans >= LOWINF) ans = -1; cout << ans << endl; return 0; }