P3084 [USACO13OPEN]照片Photo(差分约束)

题目描述

Farmer John has decided to assemble a panoramic photo of a lineup of his N cows (1 <= N <= 200,000), which, as always, are conveniently numbered from 1..N. Accordingly, he snapped M (1 <= M <= 100,000) photos, each covering a contiguous range of cows: photo i contains cows a_i through b_i inclusive. The photos collectively may not necessarily cover every single cow.

After taking his photos, FJ notices a very interesting phenomenon: each photo he took contains exactly one cow with spots! FJ was aware that he had some number of spotted cows in his herd, but he had never actually counted them. Based on his photos, please determine the maximum possible number of spotted cows that could exist in his herd. Output -1 if there is no possible assignment of spots to cows consistent with FJ's photographic results.

农夫约翰决定给站在一条线上的N(1 <= N <= 200,000)头奶牛制作一张全家福照片,N头奶牛编号1到N。

于是约翰拍摄了M(1 <= M <= 100,000)张照片,每张照片都覆盖了连续一段奶牛:第i张照片中包含了编号a_i 到 b_i的奶牛。但是这些照片不一定把每一只奶牛都拍了进去。

在拍完照片后,约翰发现了一个有趣的事情:每张照片中都有且仅有一只身上带有斑点的奶牛。约翰意识到他的牛群中有一些斑点奶牛,但他从来没有统计过它们的数量。 根据照片,请你帮约翰估算在他的牛群中最多可能有多少只斑点奶牛。如果无解,输出“-1”。

Input

输入输出格式

输入格式:

* Line 1: Two integers N and M.

* Lines 2..M+1: Line i+1 contains a_i and b_i.

扫描二维码关注公众号,回复: 5712025 查看本文章

输出格式:

* Line 1: The maximum possible number of spotted cows on FJ's farm, or -1 if there is no possible solution.

输入输出样例

输入样例#1:  复制
5 3 
1 4 
2 5 
3 4 
输出样例#1:  复制
1 

说明

There are 5 cows and 3 photos. The first photo contains cows 1 through 4, etc.

From the last photo, we know that either cow 3 or cow 4 must be spotted. By choosing either of these, we satisfy the first two photos as well.







一眼题,就是差分约束

本体求最大值,全化为小于等于的式子

r - l-1 =k 然后这个式子变形一下

   0=< (s i) - s i-1   <=1

一开始左边的0没写,这样就造成了只有上界而没有下界

然后这题spfa的判环会T ,然后就出现了梦想判环法和卡时判环法 ,什么神仙算法——qwq,具体看代码

 1 #include "bits/stdc++.h"
 2 
 3 using namespace std;
 4 typedef long long ll;
 5 
 6 struct aa
 7 {
 8     int so,v;
 9 };
10 
11 vector<aa > v[300000];
12  int in[300000];
13  
14 int n,m;
15 int st;
16 
17 int dis[300000]; 
18 int vis[300000];
19 
20 int tot;
21 clock_t start;
22 void spfa(int x)
23 {
24     deque<int > q;
25     memset(dis,0x3f3f3f3f,sizeof dis);dis[x]=0;
26     memset(in,0,sizeof in); memset(vis,0,sizeof vis);
27     q.push_back(x);
28     while (!q.empty())
29     {
30         int t=q.front();q.pop_front();
31         if(!q.empty()&&dis[q.back()]<dis[q.front()])
32         swap(q.back(),q.front());
33         vis[t]=0;
34         
35     //    cout<<t<<endl; 
36         for (auto i:v[t])
37         {
38             int so=i.so; int dd=i.v;
39              if(dis[so]>dis[t]+dd)
40              {
41                  dis[so]=dis[t]+dd;
42                  if(!vis[so])
43                  {
44                      if(clock() - start >= 0.7*CLOCKS_PER_SEC)
45                      {
46                          cout<<-1;
47                          exit(0);
48                      }//卡时
49                      if(++tot>2000000)
50                      {
51                          cout<<-1;
52                          exit(0);
53                      }// 梦想判环
54                      vis[so]=1;
55                      if(!q.empty()&&dis[so]<dis[q.front()])q.push_front(so);
56                      else q.push_back(so);
57                      if(!q.empty()&&dis[q.back()]<dis[q.front()])
58                      swap(q.back(),q.front());
59                  }
60              }
61         }
62     }
63     
64 
65 }
66 
67 int main()
68 {
69     cin>>n>>m;
70 start = clock();
71     for (int i=1;i<=m;i++)
72     {
73         int l,r;scanf("%d%d",&l,&r); 
74         if(l>r)swap(l,r);
75          v[r].push_back({l-1,-1});v[l-1].push_back({r,1});
76     }
77     for (int i=1;i<=n;i++)v[i-1].push_back({i,1}),v[i].push_back({i-1,0});
78     st=n+1;
79     for (int i=1;i<=n;i++)v[st].push_back({i,0});
80     spfa(0);    int ans=dis[n];
81 //    cout<<"ans: "<<ans<<endl;
82     //puts("HERE");
83     
84     /*for (int i=1;i<n;i++)
85     {
86     if(!in[i])spfa(i); 
87     //for (int j=0;j<=n;j++)cout<<in[i]<<" ";
88 //    cout<<endl;
89     
90     }*/
91    cout<<ans;
92     
93     
94     
95 }

猜你喜欢

转载自www.cnblogs.com/zhangbuang/p/10624192.html