| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 3665 | cki86201 | Following Flow (kriii1_F) | C++98 | 96 ms | 1100 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
#include<vector>
#include<time.h>
struct edge{
	int st,en,len;
};
edge data[1005];
long double t[2][35],p[2][35];
long double cnt[35];
int n,m;
int main()
{
	long double ans=0;
	int s=0, e=1, ct=0;
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++){
		scanf("%d%d%d",&data[i].st,&data[i].en,&data[i].len);
		cnt[data[i].st]++;
	}
	p[s][0]=1;
	while(++ct<5000){
		for(int i=0;i<=n;i++)p[e][i]=t[e][i]=0;
		for(int i=0;i<m;i++){
			p[e][data[i].en]+=p[s][data[i].st]/cnt[data[i].st];
			t[e][data[i].en]+=(t[s][data[i].st]+data[i].len*p[s][data[i].st])/cnt[data[i].st];
		}
		ans+=t[e][n];
		s=!s; e=!e;
	}
	printf("%.9llf",ans);
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
