十五月明


私信TA

用户名:dotcpp0605328

访问量:5439

签 名:

等  级
排  名 319
经  验 5465
参赛次数 0
文章发表 87
年  龄 18
在职情况 学生
学  校 曲阜师范大学
专  业 人工智能

  自我简介:

Easy

解题思路:

注意事项:

参考代码:

#include <iostream>

#include <string>

using namespace std;


int dp[10];


int main()

{

  int n;

  cin>>n;

  string s;

  int m=0;

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

    cin>>s;

    int x=s[0]-'0',y=s[s.size()-1]-'0';

    dp[y]=max(dp[x]+1,dp[y]);

    m=max(m,dp[y]);

  }

  cout<<n-m<<endl;

  return 0;

}


 

0.0分

10 人评分

  评论区

牛的
2024-04-10 00:06:15
  • «
  • 1
  • »