# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4185 | cki86201 | Following Flow (kriii1_F) | C++98 | 0 ms | 1100 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
#include<algorithm>
#include<string.h>
#include<vector>
#include<math.h>
#include<stdlib.h>
using namespace std;
const double EPS = 1e-8;
double mat[32][32];
int N,M;
int edge[32][32];
int out[32];
double val[32];
double ed[32];
inline double ab(double x){return x>0?x:-x;}
void gauss(int x,int y,double t)
{
int i;
for(i=0;i<N;i++)mat[x][i]-=t*mat[y][i];
val[x]-=t*val[y];
}
void solve()
{
int i,j;
for(i=0;i<N;i++){
for(j=i+1;j<N;j++){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |