程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ZOJ 1076Gene Assembly(很簡單的貪心)

ZOJ 1076Gene Assembly(很簡單的貪心)

編輯:C++入門知識

Gene Assembly

Time Limit: 2 Seconds Memory Limit: 65536 KB

Statement of the Problem

With the large amount of genomic DNA sequence data being made available, it is becoming more important to find genes (parts of the genomic DNA which are responsible for the synthesis of proteins) in these sequences. It is known that for eukaryotes (in contrast to prokaryotes) the process is more complicated, because of the presence of junk DNA that interrupts the coding region of genes in the genomic sequence. That is, a gene is composed by several pieces (called exons) of coding regions. It is known that the order of the exons is maintained in the protein synthesis process, but the number of exons and their lengths can be arbitrary.

Most gene finding algorithms have two steps: in the first they search for possible exons; in the second they try to assemble a largest possible gene, by finding a chain with the largest possible number of exons. This chain must obey the order in which the exons appear in the genomic sequence. We say that exon i appears before exon j if the end of i precedes the beginning of j.

The objective of this problem is, given a set of possible exons, to find the chain with the largest possible number of exons that cound be assembled to generate a gene.

Input Format

Several input instances are given. Each instance begins with the number 0 < n < 1000 of possible exons in the sequence. Then, each of the next n lines contains a pair of integer numbers that represent the position in which the exon starts and ends in the genomic sequence. You can suppose that the genomic sequence has at most 50000 basis. The input ends with a line with a single 0.

Output Format

For each input instance your program should print in one line the chain with the largest possible number of exons, by enumerating the exons in the chain. If there is more than one chain with the same number of exons, your program can print anyone of them.

Sample Input

6
340 500
220 470
100 300
880 943
525 556
612 776
3
705 773
124 337
453 665
0

Sample Output

3 1 5 6 4
2 3 1




題目大意:給了一連串的DNA蛋白質之類的。。。大致意思就是把他們首尾連接拼起來,使得長度最長。類似很久以前做的看電視節目盡量多的貪心,直接對結束時間排序即可。然後再貪心。。


我的第33道題,oh my god!!!

AC代碼:

#include
#include
#include
using namespace std;
int ans[1005];

struct node
{
    int sta;
    int en;
    int pos;
}nod[1005];

int cmp(node p1,node p2)
{
    if(p1.en<=p2.en) return 1;
    return 0;
}

int main()
{
    int n,i;
    int t,p;
    while(cin>>n&&n)
    {
        for(i=1;i<=n;i++)
        {
            scanf("%d%d",&nod[i].sta,&nod[i].en);
            nod[i].pos=i;
        }

        sort(nod+1,nod+1+n,cmp);
        t=0; p=nod[1].en;
        ans[t++]=nod[1].pos;
        //cout<p)
            {
                p=nod[i].en;
                ans[t++]=nod[i].pos;
            }
        }

        cout<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved