博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #374 (div.2)遗憾题合集
阅读量:6192 次
发布时间:2019-06-21

本文共 3058 字,大约阅读时间需要 10 分钟。

C.Journey

读错题目了。。。不是无向图,结果建错图了(喵第4样例是变成无向就会有环的那种图)

并且这题因为要求路径点尽可能多

其实可以规约为限定路径长的拓扑排序,不一定要用最短路做

#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const double pi=acos(-1.0),eps=1e-6;void File(){ freopen("D:\\in.txt","r",stdin); freopen("D:\\out.txt","w",stdout);}template
inline void read(T &x){ char c = getchar(); x = 0; while(!isdigit(c)) c = getchar(); while(isdigit(c)) { x = x * 10 + c - '0'; c = getchar(); }}const int INF=0x7fffffff;const int maxn=5010;int dp[maxn][maxn];struct Edge{ int v,nx; int w;}e[maxn];int h[maxn],sz,r[maxn];int n,m,T;queue
Q;int pre[maxn][maxn];void add(int u,int v,LL w){ e[sz].v=v; e[sz].w=w; e[sz].nx=h[u]; h[u]=sz++;}int main(){ scanf("%d%d%d",&n,&m,&T); for(int i=0;i<=n;i++) { h[i]=-1; for(int j=0;j<=n;j++) { dp[i][j]=INF; pre[i][j]=-1; } } for(int i=1;i<=m;i++) { int u,v; LL w; scanf("%d%d%d",&u,&v,&w); add(u,v,w); r[v]++; } dp[1][1]=0; for(int i=1;i<=n;i++) if(r[i]==0) Q.push(i); bool flag=0; while(!Q.empty()) { int top=Q.front(); Q.pop(); if(top==1) flag=1; if(flag==0) { for(int i=h[top];i!=-1;i=e[i].nx) { int to=e[i].v; r[to]--; if(r[to]==0) Q.push(to); } continue; } for(int i=h[top];i!=-1;i=e[i].nx) { int to=e[i].v; for(int j=1;j<=n;j++) { if(dp[top][j-1]==INF) continue; if(dp[top][j-1]+e[i].w>T) continue; if(dp[top][j-1]+e[i].w>=dp[to][j]) continue; pre[to][j]=(top-1)*n+j-1-1; dp[to][j]=dp[top][j-1]+e[i].w; } r[to]--; if(r[to]==0) Q.push(to); } } int sum; for(int i=1;i<=n;i++) if(dp[n][i]<=T) sum=i; cout<
<
S; while(1) { S.push(nowx); int tx,ty; tx=pre[nowx][nowy]/n; tx++; ty=pre[nowx][nowy]%n; ty++; if(pre[nowx][nowy]==-1) break; nowx=tx; nowy=ty; } while(!S.empty()) { cout<
<<" "; S.pop(); } return 0;}
View Code

D.Maxim and Array

没时间做。。。被第2、3题耽误了

试算了一下发现并不复杂。。。每次取绝对值最小的数(使其余值的乘积绝对值最大)这样对其加减时,总乘积变化也就最大

太多数了,直接乘会爆long long,直接判断负数个数(总乘积的正负性),以此判断要加要减

#include 
#include
#include
#include
#include
#include
using namespace std;const int N = 200000 + 50;typedef long long ll;ll aabs(ll x) { return x<0 ? -x : x;}struct node{ ll num; int id; bool operator < (const node & temp) const { return aabs(num) > aabs(temp.num); }};ll a[N];ll n,k,x;int main(){ cin >> n >> k >> x; int sign = 1; priority_queue
Q; for(int i=1;i<=n;i++) { scanf("%I64d",a+i); if(a[i] < 0) sign = -sign; Q.push((node){a[i],i}); } while(k--) { node temp = Q.top();Q.pop(); if(a[temp.id] < 0) { if(sign == -1) a[temp.id] -= x; else a[temp.id] += x; if(a[temp.id] >= 0) sign = -sign; } else { if(sign == -1) a[temp.id] += x; else a[temp.id] -= x; if(a[temp.id] < 0) sign = -sign; } Q.push((node){a[temp.id],temp.id}); } for(int i=1;i<=n;i++) { printf("%I64d%c",a[i],i==n?'\n':' '); }}
View Code

E.Road to Home

转载于:https://www.cnblogs.com/dgutfly/p/5925915.html

你可能感兴趣的文章
数据结构与算法题整理
查看>>
MySQL-join的实现原理、优化及NLJ算法
查看>>
org.springframework.web.servlet.PageNotFound
查看>>
XSS学习分支图
查看>>
COCOS2D-X 3.0在MAC下创建新IOS项目:
查看>>
12306 外包给阿里巴巴、IBM 等大企业做是否可行?
查看>>
单例模式
查看>>
Halcon学习之五:有关图像的定义域的函数
查看>>
tomcat6的编译和导入myeclipse
查看>>
【分层图】分层图学习笔记
查看>>
Swift 中的闭包与 C 和 Objective-C中的 blocks 以及其它一些编程语言中的 lambdas 比較类似。...
查看>>
Android深入源代码分析理解Aidl总体调用流程(雷惊风)
查看>>
12C -- 配置Application Continuity
查看>>
Spring Boot整合Quartz实现定时任务表配置
查看>>
Arcgis for Js实现graphiclayer的空间查询(续)
查看>>
【树莓派】服务配置相关2:基于RPi Desktop的服务配置
查看>>
Spark Mllib里的本地向量集(密集型数据集和稀疏型数据集概念、构成)(图文详解)...
查看>>
Android Studio 3.0 下载 使用新功能介绍
查看>>
Spring MVC-集成(Integration)-集成LOG4J示例(转载实践)
查看>>
ARM-Linux中断系统
查看>>