# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
698514 |
2023-02-13T16:32:31 Z |
Gital |
Autobus (COCI22_autobus) |
C++11 |
|
100 ms |
356 KB |
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
typedef long long ll;
ll dp[75];
vector<pair<ll,ll>> v[75];
bool checked[75];
int n,m;
priority_queue<pair<pair<ll,ll>,ll>,vector<pair<pair<ll,ll>,ll>>,greater<pair<pair<ll,ll>,ll>>> pq;
int k,q;
int main () {
ios::sync_with_stdio(0); cin.tie(0);
cin >> n >> m;
for(int i = 0; i < m; i++) {
ll a,b,c; cin >> a >> b >> c;
v[a].push_back({c,b});
}
cin >> k >> q;
for(int j = 0; j < q; j++) {
ll st,en; cin >> st >> en;
for(int i = 0; i < 75; i++) {
checked[i] = false;
dp[i] = -1;
}
dp[st] = 0;
pq.push({{0,st},0});
while(!pq.empty()) {
ll a = pq.top().first.first;
ll b = pq.top().first.second;
ll cnt = pq.top().second;
pq.pop();
/*if(checked[b]) continue;
checked[b] = true;*/
if(cnt >= k) continue;
for(int i = 0; i < v[b].size(); i++) {
if(dp[v[b][i].second] == -1 || dp[v[b][i].second] > a + v[b][i].first) {
dp[v[b][i].second] = max((ll)0,a + v[b][i].first);
pq.push({{dp[v[b][i].second],v[b][i].second},cnt+1});
}
}
}
cout << dp[en] << endl;
}
return 0;
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:35:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | for(int i = 0; i < v[b].size(); i++) {
| ~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
340 KB |
Output is correct |
2 |
Correct |
13 ms |
340 KB |
Output is correct |
3 |
Incorrect |
36 ms |
356 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Correct |
0 ms |
212 KB |
Output is correct |
7 |
Correct |
58 ms |
340 KB |
Output is correct |
8 |
Correct |
58 ms |
348 KB |
Output is correct |
9 |
Incorrect |
100 ms |
356 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Correct |
0 ms |
212 KB |
Output is correct |
7 |
Correct |
3 ms |
340 KB |
Output is correct |
8 |
Correct |
13 ms |
340 KB |
Output is correct |
9 |
Incorrect |
36 ms |
356 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |