이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#pragma GCC optimize(2)
#define int long long
#define X(z) x[z][i][j]
#define L F(i,n)F(j,n)
#define F(x,y) for(int x=1;x<=y;++x)
using namespace std;
int n,m,K,x[4][201][1001];
bool C(int t) {
L X(3)=-1e18;
L {
if(i==j||X(0)>1e9)continue;
X(3)=-t*X(0);
F(k,K) {
if(x[1][i][k]<0||x[2][j][k]<0)continue;
X(3)=max(X(3),x[2][j][k]-x[1][i][k]-t*X(0));
}
}
F(k,n)L X(3)=max(X(3),x[3][i][k]+x[3][k][j]);
F(i,n) if(x[3][i][i]>=0)return 1;
return 0;
}
signed main() {
cin.sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m >> K;
L X(0)=2e9;
F(i,n)F(j,K)cin>>X(1)>>X(2);
F(k,m){
int i,j,c;
cin>>i>>j>>c;
X(0)=min(X(0),c);
}
F(k,n)L X(0)=min(X(0),x[0][i][k]+x[0][k][j]);
int l=0,r=1e9;
while(l<r-1){
if(C(l+r>>1)) l=l+r>>1;
else r=l+r>>1;
}
cout << l<< '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
merchant.cpp: In function 'int main()':
merchant.cpp:37:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | if(C(l+r>>1)) l=l+r>>1;
| ~^~
merchant.cpp:37:26: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | if(C(l+r>>1)) l=l+r>>1;
| ~^~
merchant.cpp:38:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
38 | else r=l+r>>1;
| ~^~
# | 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... |