#include<iostream>#include<cstdio>#include<cstring>using namespace std;int dp[30][30];int ord[30];int stu[30];int main(){ //freopen("in","r",stdin); int n,i,j,t; cin>>n; for(i=1;i<=n;i++) { cin>>t; ord[t]=i; } while(cin>>t) { stu[t]=1; for(i=2;i<=n;i++) { cin>>t; stu[t]=i; } memset(dp,0,sizeof(dp)); for(i=1;i<=n;i++) for(j=1;j<=n;j++) if(ord[i]==stu[j]) dp[i][j]=dp[i-1][j-1]+1; else dp[i][j]=max(dp[i-1][j],dp[i][j-1]); cout<<dp[n][n]<<endl; } return 0;}
Uvs-111 history grading
| Time limit:3000 Ms |
|
Memory limit:Unknown |
|
64bit Io format:% LLD & % LlU |
Submitstatus
Description
Background
Using problems in computer science involve maximizing some measure according to constraints.
Consider a history exam in which students are asked to put several historical events into chronological order. students who order all the events correctly will receive full credit, but how shoshould partial credit be awarded to students who incorrectly rank one or more of the historical events?
Some possibilities for partial credit include:
- 1 point for each event whose rank matches its correct rank
- 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 the Order 1 3 2 4 wowould receive a score of 2 using the first method (events 1 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 relative to each other ).
In this problem you are asked to write a program to score such questions using the second method.
The Problem
Given the correct chronological orderNEvents as where denotes the ranking of eventIIn the correct chronological order and a sequence of student responses where denotes the chronological rank given by the student to eventI; DetermineLengthOf the longest (not necessarily contiguous) sequence of events in the student responses that are in the correct chronological order relative to each other.
The input
The first line of the input will consist of one integerNIndicating the number of events with. The second line will containNIntegers, indicating the correct chronological orderNEvents. The remaining lines will each consistNIntegers with each line representing a student's chronological ordering of the N events. All lines will containNNumbers in the range, with each number appearing exactly once per line, and with each number separated from other numbers on the same line by one or more spaces.
The output
For each student ranking of events your program shocould print the score for that ranking. There shocould be one line of output for each student ranking.
Sample input 1
44 2 3 11 3 2 43 2 1 42 3 4 1
Sample output 1
123
Sample input 2
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
Sample output 2
65109
Source
Root: Competitive programming 2: This increases the lower bound of programming contests. Again (Steven & Felix Halim)
Root: aoapc I: Beginning algorithm contests (rujia Liu): Volume 5. Dynamic Programming
Root: Competitive programming 3: the new lower bound of programming contests (Steven & Felix Halim): Problem Solving Paradigms: Dynamic Programming: longest increasing subsequence (LIS)
Root: Competitive programming: increasing the lower bound of programming contests (Steven & Felix Halim): Chapter 3. problem Solving Paradigms: Dynamic Programming: longest increasing subsequence (LIS)-classical
Submitstatus
Uvs-111 history grading