結果
問題 | No.1104 オンライン点呼 |
ユーザー | leaf_1415 |
提出日時 | 2020-07-03 21:59:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,721 bytes |
コンパイル時間 | 1,079 ms |
コンパイル使用メモリ | 89,516 KB |
実行使用メモリ | 14,372 KB |
最終ジャッジ日時 | 2024-09-17 00:46:46 |
合計ジャッジ時間 | 2,883 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 35 ms
12,744 KB |
testcase_02 | AC | 34 ms
12,656 KB |
testcase_03 | AC | 29 ms
12,676 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 18 ms
9,784 KB |
testcase_08 | AC | 9 ms
7,732 KB |
testcase_09 | AC | 42 ms
14,372 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 13 ms
8,520 KB |
testcase_12 | AC | 20 ms
10,000 KB |
testcase_13 | AC | 14 ms
8,196 KB |
testcase_14 | AC | 3 ms
7,624 KB |
testcase_15 | AC | 24 ms
10,256 KB |
testcase_16 | WA | - |
testcase_17 | AC | 18 ms
9,264 KB |
testcase_18 | AC | 21 ms
10,224 KB |
testcase_19 | AC | 30 ms
11,424 KB |
testcase_20 | AC | 32 ms
11,860 KB |
testcase_21 | AC | 31 ms
11,960 KB |
testcase_22 | AC | 26 ms
10,872 KB |
testcase_23 | AC | 21 ms
10,436 KB |
testcase_24 | AC | 10 ms
7,752 KB |
testcase_25 | AC | 2 ms
7,360 KB |
testcase_26 | AC | 2 ms
7,492 KB |
testcase_27 | AC | 3 ms
6,944 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define mod 1000000007 using namespace std; typedef pair<llint, llint> P; struct edge{ llint to, cost; edge(){} edge(llint a, llint b){ to = a, cost = b; } }; llint n, k; llint a[100005], b[100005]; vector<edge> G[100005]; llint dist[100005]; void dijkstra(vector<edge> G[], llint S, llint dist[]) { for(int i = 1; i <= n; i++) dist[i] = inf; dist[S] = 0; priority_queue< P, vector<P>, greater<P> > Q; Q.push( make_pair(0, S) ); llint v, d; while(Q.size()){ d = Q.top().first; v = Q.top().second; Q.pop(); if(dist[v] < d) continue; for(int i = 0; i < G[v].size(); i++){ if(dist[G[v][i].to] > d + G[v][i].cost){ dist[G[v][i].to] = d + G[v][i].cost; Q.push( make_pair(dist[G[v][i].to], G[v][i].to) ); } } } } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> k; for(int i = 1; i <= n; i++) cin >> a[i]; for(int i = 1; i <= n; i++) cin >> b[i]; for(int i = 2; i <= n; i++){ if(i-2 >= 1) G[i-2].push_back(edge(i, a[i-2]+b[i]+k)); G[i-1].push_back(edge(i, a[i-1]+b[i])); } dijkstra(G, 1, dist); llint ans = 0; for(int i = 1; i <= n; i++) ans = max(ans, dist[i]); cout << ans << endl; return 0; }