結果
| 問題 |
No.2916 累進コスト最小化
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-04 22:07:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 104 ms / 3,500 ms |
| コード長 | 1,646 bytes |
| コンパイル時間 | 1,862 ms |
| コンパイル使用メモリ | 172,488 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-05 01:06:07 |
| 合計ジャッジ時間 | 3,580 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 34 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int p=998244353;
int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*1LL*u)%p;} else {int u=po(a,b-1);return (a*1LL*u)%p;}}
int inv(int x) {return po(x,p-2);}
mt19937 rnd;
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#define debugv(v) do {cout<< #v <<" : {"; for(int izxc=0;izxc<v.size();++izxc) {cout << v[izxc];if(izxc+1!=v.size()) cout << ","; }cout <<"}"<< endl;} while(0)
#else
#define debug(...)
#define debugv(v)
#endif
#define lob(a,x) lower_bound(all(a),x)
#define upb(a,x) upper_bound(all(a),x)
const int maxn=11;
vector<array<int,3> > g[maxn];
int dp[maxn];bool used[maxn];
int32_t main()
{
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n,m,C;cin>>n>>m>>C;
for(int i=0;i<m;++i)
{
int x,y,r,w;cin>>x>>y>>r>>w;--x;--y;
g[x].app({y,r,w});g[y].app({x,r,w});
}
for(int c=1;c<=C;++c)
{
fill(dp,dp+n,-1);fill(used,used+n,false);dp[0]=c;
for(int cyc=0;cyc<n;++cyc)
{
int el=(-1);
for(int i=0;i<n;++i)
{
if(!used[i] && (el==(-1) || dp[el]<dp[i]))
{
el=i;
}
}
used[el]=true;if(dp[el]==(-1)) continue;
for(auto h:g[el])
{
dp[h[0]]=max(dp[h[0]],dp[el]-(dp[el]/h[1])-h[2]);
}
}
cout<<dp[n-1]<<'\n';
}
return 0;
}