Cod sursa(job #3285345)
Utilizator | Data | 12 martie 2025 19:05:11 | |
---|---|---|---|
Problema | Algoritmul lui Dijkstra | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva educationala | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("da.in");
ofstream gout("nu.out");
struct muchie{
int y,w;
muchie(int yy=0,int ww=0){y=yy;w=ww;}
};
int main()
{
}