码迷,mamicode.com
首页 > 其他好文 > 详细

poj 1007 DNA Sorting

时间:2014-08-02 01:37:12      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   io   for   2014   

bubuko.com,布布扣

 

 

 

 错误

 

#include<stdio.h>

#include<string.h>

#include<algorithm>

using namespace std;

struct node {  

   int a;    

char s[1000];       }p[1000];

 

int cmp(node c,node b)

{     return c.a<b.a; }

 

int main()

{    

  int m,n;

     while(scanf("%d%d",&n,&m))

     {

          for(int i=0;i<1000;i++)

          p[i].a=0;

                    for(int i=0;i<m;i++)

          scanf("%s",p[i].s);  

                   for(int k=0;k<m;k++)

          for(int i=0;i<n;i++)   

            for(int j=i+1;j<n;j++)  

             if(p[k].s[i]>p[k].s[j])  

             p[k].a++;              

            sort(p,p+m,cmp);       

                      for(int i=0;i<m;i++)

        printf("%s\n",p[i].s);

     }  

  }

 

poj 1007 DNA Sorting,布布扣,bubuko.com

poj 1007 DNA Sorting

标签:style   blog   http   color   strong   io   for   2014   

原文地址:http://www.cnblogs.com/2014acm/p/3885997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!