# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
498260 | EliteCallsYou | 여행하는 상인 (APIO17_merchant) | C++17 | 57 ms | 2204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
using namespace std ;
//############################################################################
# define read(a)/**/for(int i=0;i<int(sizeof(a)/sizeof(a[0]));i++){cin>>a[i];}
# define print(x)/**/for(auto zx:x){cout<<zx<<' ';}
const char* tochar(string a){return a.c_str();}
void files(){freopen("hopscotch.in","r",stdin);freopen("hopscotch.out","w",stdout);}
void speed(){ios_base::sync_with_stdio(false);cin.tie(0);}
long long gcd(long long a,long long b){if(!b){return a;}a%=b;return gcd(b,a);}
long long lcm(long long a,long long b){return a /gcd(a,b) * b;}
//###########################################################################
const int N = 1e5 + 5 ;
const long long MOD = 1e9+7 ;
//###########################################################################
void hack(){}
//###########################################################################
# define node first
# define weight second
# define disstance first
# define cur_node second
int main(){
/////////////////////////////////////////
int n,m,k ; cin >> n >> m >> k ;
int buy[n+1][k+1], sell[n+1][k+1] ;
for ( int i = 1 ; i <= n ; i ++ ){
for ( int j = 1 ; j <= k ; j ++ ){
cin >> buy[i][j] >> sell[i][j] ;
}
}
/////////////////////////////////////////
vector < pair<int,int> > mp[n+1] ;
for ( int i = 0 ; i < m ; i ++ ){
int a,b,w ;
cin >> a >> b >> w ;
mp[a].push_back({b,w}) ;
}
/////////////////////////////////////////
set < pair<int,int> > st ;
map < int,int > dist ;
// { disstance_needed, cur_node } ///
st.insert({0,1}) ;
while ( !st.empty() ){
auto it = *st.begin() ;
st.erase(st.begin()) ;
for ( auto child : mp[it.second] ){
if ( it.first + child.second < dist[child.first] || !dist[child.first] ){
st.erase({dist[child.first],child.first}) ;
dist[child.first] = it.first + child.second ;
st.insert({dist[child.first],child.first}) ;
}
}
}
int mx = 0 ;
for ( int i = 2 ; i <= n ; i ++ ){
for ( int j = 1 ; j <= k ; j ++ ){
if ( buy[1][j] && sell[i][j] ){
mx = max(mx, (sell[i][j]-buy[1][j])/dist[i] ) ;
}
}
}
cout << mx << '\n' ;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |