uva111---History Grading
发布日期:2022-02-02 02:58:13 浏览次数:27 分类:技术文章

本文共 2790 字,大约阅读时间需要 9 分钟。

Many problems in Computer Science involve maximizing some measureaccording to constraints.

Consider a history exam in which students are asked to put severalhistorical events into chronological order. Students who order all theevents correctly will receive full credit, but how should partial creditbe awarded to students who incorrectly rank one or more of thehistorical events?

Some possibilities for partial credit include:

  1. 1 point for each event whose rank matches its correct rank
  2. 1 point for each event in the longest (not necessarily contiguous)sequence of events which are in the correct order relative to each other.

For example, if four events are correctly ordered 1 2 3 4 then theorder 1 3 2 4 would receive a score of 2 using the first method (events1 and 4 are correctly ranked) and a score of 3 using the second method(event sequences 1 2 4 and 1 3 4 are both in the correct order relativeto each other).

In this problem you are asked to write a program to score such questionsusing the second method.

Given the correct chronological order of n events tex2html_wrap_inline34 as tex2html_wrap_inline36 where tex2html_wrap_inline38 denotes the ranking ofevent i in the correct chronological order and a sequence of studentresponses tex2html_wrap_inline42 where tex2html_wrap_inline44 denotes thechronological rank given by the student to event i; determine the length of the longest (not necessarily contiguous) sequenceof events in the student responses that are in the correct chronologicalorder relative to each other.

The first line of the input will consist of one integer n indicatingthe number of events with tex2html_wrap_inline50 . The second line willcontain n integers, indicating the correct chronological order of nevents. The remaining lines will each consist of n integers with eachline representing a student's chronological ordering of the n events.All lines will contain n numbers in the range tex2html_wrap_inline60 , with each numberappearing exactly once per line, and with each number separated fromother numbers on the same line by one or more spaces.

For each student ranking of events your program should print the scorefor that ranking. There should be one line of output for each studentranking.

44 2 3 11 3 2 43 2 1 42 3 4 1

123

103 1 2 4 9 5 10 6 8 71 2 3 4 5 6 7 8 9 104 7 2 3 10 6 9 1 5 83 1 2 4 9 5 10 6 8 72 10 1 3 8 4 9 5 7 6

65109
代码实现

#include 
#include
using namespace std;int a[101],b[101],dp[101][101];int main(){ int t,n; cin>>n; for(int i=1;i<=n;i++) { cin>>t; a[i]=t; } for(int j=1;j<=n;j++) { cin>>t; b[j]=t; } memset(dp,0,sizeof(dp)); for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(a[i]==b[j]) { dp[i][j]=dp[i-1][j-1]+1; } else { dp[i][j]=max(dp[i-1][j],dp[i][j-1]); } } } cout<
<

转载地址:https://blog.csdn.net/u010368749/article/details/21027289 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:poj3356---AGTC
下一篇:LCS算法讲解

发表评论

最新留言

哈哈,博客排版真的漂亮呢~
[***.90.31.176]2024年04月09日 10时50分03秒