- 描述
-
C小加有一些木棒,它们的长度和质量都已经知道,需要一个机器处理这些木棒,机器开启的时候需要耗费一个单位的时间,如果 第i+1个木棒的重量和长度都大于等于第i个处理的木棒,那么将不会耗费时间,否则需要消耗一个单位的时间。因为急着去约会,C小加想在最短的时间内把木 棒处理完,你能告诉他应该怎样做吗?
- 输入
- 第一行是一个整数T(1<T<1500),表示输入数据一共有T组。 每组测试数据的第一行是一个整数N(1<=N<=5000),表示有N个木棒。接下来的一行分别输入N个木棒的L,W(0 < L ,W <= 10000),用一个空格隔开,分别表示木棒的长度和质量。 输出
- 处理这些木棒的最短时间。 样例输入
-
3 5 4 9 5 2 2 1 3 5 1 4 3 2 2 1 1 2 2 3 1 3 2 2 3 1
样例输出 -
213
一开始我以为只要将长度和重量升序,然后找出当length[i]!=length[i-1]时,weight[i]
1 #include
/*WA*/ 2 typedef struct 3 { 4 int length; 5 int weight; 6 }stick; 7 int main() 8 { 9 int t;10 scanf("%d",&t);11 while(t--)12 {13 int n,i,j,count=0,first=1;14 scanf("%d",&n);15 stick a[n],t;16 for(i=0;i a[j].length)22 {23 t=a[i];24 a[i]=a[j];25 a[j]=t;26 }27 }28 for(i=0;i a[j].weight))32 {33 t=a[i];34 a[i]=a[j];35 a[j]=t;36 }37 38 }39 for(i=0;i 1 #include
/*AC*/ 2 #include 3 #include /*memset函数将数组重置 memset(数组名,替换后元素,大小)*///大小一般为sizeof(数组名)(全部置换),sizeof(int)*n 4 using namespace std; 5 typedef struct 6 { 7 int length; 8 int weight; 9 }stick;10 bool cmp(stick x,stick y)/*sort排序方式*/11 {12 if(x.length =t)40 {41 t=a[j].weight;42 a[j].weight=0;/*加工后的木棒质量置零*/43 }44 }45 46 }47 48 }49 printf("%d\n",count);50 }51 }