CodeForces 264C Choosing Balls dp(水

题目链接:

题意:

给定n q 表示有n个石头 q个询问

下面n个数字给出每个石头的价值

下面n个数字给出每个石头的颜色(用1-n表示)

选出一个子序列使得序列的权值和最大(序列权值计算方式:当这个点的颜色和前面那个点颜色相同时 贡献 value * a, otherwise 贡献 value * b)

下面q行,每行给出 a 和 b的值。

思路:

首先求dp方程 dp[i]表示颜色为i时的最大值 那么 this_point_value = max(dp[j] + b*v[i]) (i!=j)   this_point_value = max(dp[i] + a*v[i]) dp[color[i]] = this_point_value;

就是这样。

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.math.BigInteger;
import java.text.DecimalFormat;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.Deque;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Map;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Stack;
import java.util.StringTokenizer;
import java.util.TreeMap;
import java.util.TreeSet;
import java.util.Queue;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
public class Main {
	int n, q, a, b;
	int[] v = new int[N], c = new int[N];
	long[] dp = new long[N];
	int[] pre = new int[N];
	long max1, max2;
	int col1, col2;
	void up(long val, int col){
		if(val>=max1){
			if(val>max1){
				if(col == col1){
					max1 = val;
				}
				else {
					max2 = max1; col2 = col1;
					max1 = val; col1 = col;
				}
			}
			else if(col!=col1){
				max2 = val; col2 = col;
			}
		}
		else if(val >= max2){
			if(col == col1)return;
			max2 = val; col2 = col;
		}
	}
	void work() throws Exception{
		n = Int(); q = Int();
		for(int i = 1; i <= n; i++)v[i] = Int();
		for(int i = 1; i <= n; i++)c[i] = Int();		

		while(q-->0){
			a = Int(); b = Int();
			long ans = 0;
			max1 = -inf64; max2 = -inf64;
			col1 = 0; col2 = 0;
			for(int i = 1; i <= n; i++)pre[i] = -1;
			for(int i = 1; i <= n; i++){
				long now = (long)v[i]*b;
				if(pre[c[i]]!=-1){
					now = max(now, dp[c[i]] + (long)a*v[i]);
			//		out.print("now1:"+now);
				}
				if(col1!=c[i] && col1!=0)now = max(now, max1 + (long)b*v[i]);
				else if(col2!=c[i] && col2!=0)now = max(now, max2 + (long)b*v[i]);
			//	out.println(" now2:"+now);

				up(now, c[i]);
				if(pre[c[i]] == -1)dp[c[i]] = now;
				else
				dp[c[i]] = max(dp[c[i]], now);
				pre[c[i]] = i;
				ans = max(ans, now);
			//	out.println(max1+" "+col1);	out.println(max2+" "+col2);	out.println(now+" "+ans+" ***");
			}
			out.println(ans);
		}
	}

    public static void main(String[] args) throws Exception{
        Main wo = new Main();
    	in = new BufferedReader(new InputStreamReader(System.in));
    	out = new PrintWriter(System.out);
  //  	in = new BufferedReader(new InputStreamReader(new FileInputStream(new File("input.txt"))));
  //  	out = new PrintWriter(new File("output.txt"));
        wo.work();
        out.close();
    }

	static int N = 100000+5;
	static int M = 101;
	DecimalFormat df=new DecimalFormat("0.0000");
	static int inf = (int)1e9;
	static long inf64 = (long) 1e18;
	static double eps = 1e-8;
	static double Pi = Math.PI;
	static int mod = (int)1e9 + 7 ;

	private String Next() throws Exception{
    	while (str == null || !str.hasMoreElements())
    	    str = new StringTokenizer(in.readLine());
    	return str.nextToken();
    }
    private int Int() throws Exception{
    	return Integer.parseInt(Next());
    }
    private long Long() throws Exception{
    	return Long.parseLong(Next());
    }
    private double Double() throws Exception{
    	return Double.parseDouble(Next());
    }
    StringTokenizer str;
    static Scanner cin = new Scanner(System.in);
    static BufferedReader in;
    static PrintWriter out;
  /*
	class Edge{
		int from, to, dis, nex;
		Edge(){}
		Edge(int from, int to, int dis, int nex){
			this.from = from;
			this.to = to;
			this.dis = dis;
			this.nex = nex;
		}
	}
	Edge[] edge = new Edge[M<<1];
	int[] head = new int[N];
	int edgenum;
	void init_edge(){for(int i = 0; i < N; i++)head[i] = -1; edgenum = 0;}
	void add(int u, int v, int dis){
		edge[edgenum] = new Edge(u, v, dis, head[u]);
		head[u] = edgenum++;
	}/**/
	int upper_bound(int[] A, int l, int r, int val) {// upper_bound(A+l,A+r,val)-A;
		int pos = r;
		r--;
		while (l <= r) {
			int mid = (l + r) >> 1;
			if (A[mid] <= val) {
				l = mid + 1;
			} else {
				pos = mid;
				r = mid - 1;
			}
		}
		return pos;
	}

	int Pow(int x, int y) {
		int ans = 1;
		while (y > 0) {
			if ((y & 1) > 0)
				ans *= x;
			y >>= 1;
			x = x * x;
		}
		return ans;
	}
	double Pow(double x, int y) {
		double ans = 1;
		while (y > 0) {
			if ((y & 1) > 0)
				ans *= x;
			y >>= 1;
			x = x * x;
		}
		return ans;
	}
	int Pow_Mod(int x, int y, int mod) {
		int ans = 1;
		while (y > 0) {
			if ((y & 1) > 0)
				ans *= x;
			ans %= mod;
			y >>= 1;
			x = x * x;
			x %= mod;
		}
		return ans;
	}
	long Pow(long x, long y) {
		long ans = 1;
		while (y > 0) {
			if ((y & 1) > 0)
				ans *= x;
			y >>= 1;
			x = x * x;
		}
		return ans;
	}
	long Pow_Mod(long x, long y, long mod) {
		long ans = 1;
		while (y > 0) {
			if ((y & 1) > 0)
				ans *= x;
			ans %= mod;
			y >>= 1;
			x = x * x;
			x %= mod;
		}
		return ans;
	}

	int gcd(int x, int y){
		if(x>y){int tmp = x; x = y; y = tmp;}
		while(x>0){
			y %= x;
			int tmp = x; x = y; y = tmp;
		}
		return y;
	}
	int max(int x, int y) {
		return x > y ? x : y;
	}

	int min(int x, int y) {
		return x < y ? x : y;
	}

	double max(double x, double y) {
		return x > y ? x : y;
	}

	double min(double x, double y) {
		return x < y ? x : y;
	}

	long max(long x, long y) {
		return x > y ? x : y;
	}

	long min(long x, long y) {
		return x < y ? x : y;
	}

	int abs(int x) {
		return x > 0 ? x : -x;
	}

	double abs(double x) {
		return x > 0 ? x : -x;
	}

	long abs(long x) {
		return x > 0 ? x : -x;
	}

	boolean zero(double x) {
		return abs(x) < eps;
	}
	double sin(double x){return Math.sin(x);}
	double cos(double x){return Math.cos(x);}
	double tan(double x){return Math.tan(x);}
	double sqrt(double x){return Math.sqrt(x);}
}
时间: 2024-10-24 14:00:48

CodeForces 264C Choosing Balls dp(水的相关文章

Codeforces Round #162 (Div. 1) C Choosing Balls dp

//dp[i] 表示以颜色为i结尾的最大值 //dp[i] = max(dp[i] , dp[i] + a*v[i] ,other_max + b*v[i]) ; //为除颜色i以外的其它颜色的最大值 #include<cstdio> #include<cstring> #include<iostream> using namespace std ; const int maxn = 100010 ; const __int64 inf = 0x7fffffffffff

【Coder Force】264C - Choosing Balls (DP高难度思维转换)

卡了2天,说多了都是泪. /* 该点的最大值的可以由前面某个点加上相应的值得到. 而前面的点可以分析为以下的条件 1.前面的这个点与该点颜色相同. 2.这个点与这个点颜色不同. 3.前面没有点. 现在分析: 由于1.3两个条件已经是o(1)的时间,所以不需要优化. 主要的时间出在于2的时间,2需要遍历. 假设2里面有n个条件需要判断,其实归结起来,我们只需要判断两个情况 1.这个点的颜色与该点相同 2.这个点的颜色与该点不同. 而且假如不同的话,加上的差值都是一样的,所以我们应该选择一个积累了最

CodeForces 189A 166E 【DP &#183;水】

非常感谢 Potaty 大大的援助使得我最后A出了这两题DP ================================== 189A : 求切分后的ribbon最多的数目,不过要求切分后只能存在a or b or c 的长度 O(n)的效率:遍历下来求 f[i - a].f[i - b]. f[i - c] 中的最大值 如果i - a || b || c 的值小于0那么跳过 来一张图,过程非常清晰 当然,初始化对f 数组置-INF,否则可能出错 //#pragma comment(lin

Codeforces 148D 一袋老鼠 Bag of mice | 概率DP 水题

除非特别忙,我接下来会尽可能翻译我做的每道CF题的题面! Codeforces 148D 一袋老鼠 Bag of mice | 概率DP 水题 题面 胡小兔和司公子都认为对方是垃圾. 为了决出谁才是垃圾,大哥拿来了一袋老鼠,其中有w只白老鼠和b只黑老鼠.胡小兔先抓,先抓到白老鼠的人赢. 每次学姐抓完老鼠之后,总会有另外一只老鼠从袋子里自己跑出来(这只老鼠不算任何人抓的),而胡小兔抓老鼠时则不会发生这样的事. 每次袋子里的每只老鼠被抓到的概率相等,当有一只老鼠跑出来的时候,每只老鼠跑出来的几率也相

codeforces 794E Choosing Carrot

目录 codeforces 794E Choosing Carrot 题意 题解 Code codeforces 794E Choosing Carrot 题目传送门 题意 给出一个长度为\(n\)的序列,\(A\)和\(B\)开始玩游戏,每次可以从序列的两端删除一个数,直到删除到最后一个数,\(A\)想要使最后一个数尽量的大,而\(B\)想要使最后一个数尽量的小,\(A\)先手,问最后剩下的数是多少.然后问如果\(A\)先进行\(k (k=1...n-1)\)次操作,那么结果是多少. 题解 感

CodeForces 22C System Administrator 小水怡情 图论+构造

题目链接:点击打开链接 构造一个星形图+一个完全图就好了.. #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <iostream> #include <map> #include <set> #include <math.h> using namespace std; #define inf

CodeForces 18E Flag 2 dp

题目链接:点击打开链接 #include<stdio.h> #include<iostream> #include<string.h> #include<set> #include<vector> #include<map> #include<math.h> #include<queue> #include<string> #include<stdlib.h> #include<a

URAL 1039 Anniversary Party 树形DP 水题

1039. Anniversary Party Time limit: 0.5 secondMemory limit: 8 MB Background The president of the Ural State University is going to make an 80'th Anniversary party. The university has a hierarchical structure of employees; that is, the supervisor rela

Codeforces 41D Pawn 简单dp

题目链接:点击打开链接 给定n*m 的矩阵 常数k 下面一个n*m的矩阵,每个位置由 0-9的一个整数表示 问: 从最后一行开始向上走到第一行使得路径上的和 % (k+1) == 0 每个格子只能向或走一步 求:最大的路径和 最后一行的哪个位置作为起点 从下到上的路径 思路: 简单dp #include <cstdio> #include <algorithm> #include<iostream> #include<string.h> #include &