主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
dnn_yyds
2024年9月25日 17:01
字符串距离 题解:为啥超时啦,通过率75%
P1947
回复 2
|
赞 0
|
浏览 298
#include <bits/stdc++.h> using namespace std; typedef struct node{ string first,second; int dis; }NODE; bool cmt(const NODE &a, const NODE &b) { if (a.dis == b.dis) { if (a.fi...
致敬大佬
2024年8月4日 16:39
字符串距离 题解(似乎这个网站的测试数据有问题):
P1947
回复 0
|
赞 0
|
浏览 289
首先是能通过给的示例样例,居然还是wrong answer 还有就是把网上所有方法找了,都是wrong answer 假设网站自己的测试数据有误吧,下面上我的思路和代码: #include #include #include #include using namespace std; vector str; struct Res { string small; string big; int distance; }; int cnt_distance(string a, string b) { ...
题目
字符串距离
题解数量
2
发布题解
热门题解
1
字符串距离 题解:为啥超时啦,通过率75%
2
字符串距离 题解(似乎这个网站的测试数据有问题):