【LeetCode Weekly Contest 26 Q1】Longest Uncommon Subsequence I
【题目链接】:https://leetcode.com/contest/leetcode-weekly-contest-26/problems/longest-uncommon-subsequence-i/
【题意】
让你求两个字符串的最长不公共子序列的长度;
即这个序列是两个字符串中的一个的子序列;
同时要求这个序列不是所有其他任意一个字符串的子序列;
【题解】
两个字符串相同就无解;
否则输出两个字符串的长度中较大者;
【完整代码】
#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define ps push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%lld",&x)
#define ref(x) scanf("%lf",&x)
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
const int dx[9] = { 0,1,-1,0,0,-1,-1,1,1 };
const int dy[9] = { 0,0,0,-1,1,-1,1,-1,1 };
const double pi = acos(-1.0);
const int N = 110;
class Solution {
public:
int findLUSlength(string a, string b) {
if (a == b)
return -1;
return max(int(a.size()), int(b.size()));
}
};