其他分享
首页 > 其他分享> > BZOJ 1108: [POI2007]天然气管道Gaz 性质分析_小结论_巧妙

BZOJ 1108: [POI2007]天然气管道Gaz 性质分析_小结论_巧妙

作者:互联网

Code:

#include<bits/stdc++.h>
#define setIO(s) freopen(s".in","r",stdin)  
using namespace std;       
int main()
{
	// setIO("input"); 
	int n; 
	long long ans=0; 
	scanf("%d",&n); 
	for(int i=1;i<=n;++i)
	{
		int a,b;
		scanf("%d%d",&a,&b);    //x2 y2
		ans += b - a; 
	}
	for(int i=1;i<=n;++i)
	{
		int a,b; 
		scanf("%d%d",&a,&b);
		ans += a-b; 
	}
	printf("%lld",ans); 
	return 0;
}

  

标签:Gaz,int,POI2007,long,setIO,ans,scanf,1108
来源: https://www.cnblogs.com/guangheli/p/10959879.html