what's the bottleneck of my prog? I'm geting TLE.
Doing a quick profile of your code, it seems that most of the time is spent inside the spfa function (about 86% of the total runtime), but I wouldn't call it a bottleneck, it's more of a problem with the complexity of your algorithm.
If I ...
Search found 2 matches
- Thu Feb 14, 2013 10:50 am
- Forum: Volume 116 (11600-11699)
- Topic: 11635 - Hotel booking
- Replies: 39
- Views: 17227
- Wed Feb 13, 2013 5:16 pm
- Forum: Volume 116 (11600-11699)
- Topic: 11635 - Hotel booking
- Replies: 39
- Views: 17227
Re: 11635--Hotel Booking
what's the bottleneck of my prog? I'm geting TLE.
#include <iostream>
#include <map>
#include <vector>
#include <cstdio>
#include <queue>
#include <memory.h>
using namespace std;
#define MAX 10001
typedef struct Edge
{
int i,v;
Edge *next;
Edge(int ii=0,int vv=0,Edge * nnext=NULL):i(ii),v(vv ...
#include <iostream>
#include <map>
#include <vector>
#include <cstdio>
#include <queue>
#include <memory.h>
using namespace std;
#define MAX 10001
typedef struct Edge
{
int i,v;
Edge *next;
Edge(int ii=0,int vv=0,Edge * nnext=NULL):i(ii),v(vv ...