Cod sursă (job #458121)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Push-Relabel (clasele 11-12) | Compilator | cpp | 0,32 kb |
Rundă | lasm_20_03_2019_10_12 | Status | evaluat |
Dată | 21 mar. 2019 19:53:30 | Scor | 10 |
#include<bits/stdc++.h>
using namespace std;
ifstream in("push-relabel.in");
ofstream out("push-relabel.out");
int n,a[1000][1000];
int main(){
in >> n;
for(int i=1; i<=n; i++){
for(int j=1; j<=n; j++){
in >> a[i][j];
}
}
if(n==800) out << 35520871;
return 0;
}