zoukankan      html  css  js  c++  java
  • activity select problem(greedy algorithms)

    many activities will use the same place, every activity ai has its'  start time si and finish time fi.let the number of activities to be as many as possible.

    1. dynamic programming

    use ak be a knife to cut the set activities into two parts and recursive to find the max subset

    c[i,j](star after ai finish and finish before aj star) = max {1+c[i,k] + c[k,j]} or 0(haven't ak);

    2.greedy programming

    let ai ranked by their finish time. earlier finish time ranked front than the later.

    then choose the activities by its finish time, keep they are not contradictory.

     1 public class activity_select {
     2      int[] s = {1,3,0,5,3,5,6,8,8,2,12};
     3     int[] f = {4,5,6,7,9,9,10,11,12,14,16};
     4     private static class activity{
     5         private int sta ;
     6         private int fin ;
     7         public activity(){
     8             sta = 0;
     9             fin = 0;
    10         }
    11     }
    12 
    13     public   activity[] select(){
    14     activity[]  act = new activity[s.length];
    15     for(int i = 0;i<s.length;i++){   //initial
    16         act[i] = new activity();
    17         act[i].sta = s[i];
    18         act[i].fin = f[i];
    19     }    
    20     for(int i = 0;i<s.length;i++){   //insert sort from early fin to later fin
    21         for(int j = i;j < s.length;j++){
    22             if(act[i].fin > act[j].fin){
    23                 int testa = act[j].sta;
    24                 int tefin = act[j].fin;
    25                 act[j].sta = act[i].sta;
    26                 act[j].fin = act[i].fin;
    27                 act[i].fin = tefin;
    28                 act[i].sta = testa;
    29             }
    30         }
    31     }    
    32     activity[] res = new activity[s.length];
    33     res[0] = act[0];
    34     int j = 0;
    35     for(int i = 0;i < s.length -1;i++){
    36         if(act[i+1].sta > res[j].fin){
    37             res[++j] = act[i + 1];
    38         }
    39     }
    40     activity[] res1 = new activity[j+1];
    41     for(int i = 0;i <=j;i++){
    42         res1[i] = res[i];
    43     }
    44     return res1;
    45     }
    46     
    47     
    48 
    49     public static void main(String[] args){
    50         activity_select  ac = new activity_select();
    51         activity[] a = ac.select();
    52         int n = a.length;
    53         for(int i = 0;i < n;i++){
    54             System.out.println(a[i].sta + " " +a[i].fin);
    55         }
    56     }
    57     
    58     
    59 }
  • 相关阅读:
    java中的工厂模式(简单工厂模式+工厂方法模式)
    代码集合
    java读取文件的路径问题
    使用ZXing库生成二维码
    java设计模式-装饰者模式
    android文件流缓存
    java8 新特性
    Excel导出
    常用的在线工具
    Java加密简介
  • 原文地址:https://www.cnblogs.com/wujunde/p/7073248.html
Copyright © 2011-2022 走看看