陈尚涵
发表于 2023-7-30 11:21:54
Ewan-Ahiouy 发表于 2023-7-30 07:33
看题解的时候看到这一条:
我对这个处理了啊?
长腿老头
发表于 2023-7-30 13:04:03
想要渔币做作业
陈尚涵
发表于 2023-7-30 13:04:54
长腿老头 发表于 2023-7-30 13:04
想要渔币做作业
这个不是有回贴奖励的一些帖子,是求助贴,帮我解决问题才能有奖励
tommyyu
发表于 2023-7-30 13:19:46
zhangjinxuan 发表于 2023-7-29 18:20
?不二把我的 17# 给删了
zhangjinxuan
发表于 2023-7-30 13:21:30
tommyyu 发表于 2023-7-30 13:19
?不二把我的 17# 给删了
占用空间,看着不顺眼{:10_277:}吗{:10_291:}
也有可能是侵犯了洛谷的某个权{:10_282:}
tommyyu
发表于 2023-7-30 13:22:27
本帖最后由 tommyyu 于 2023-7-30 13:23 编辑
zhangjinxuan 发表于 2023-7-30 13:21
占用空间,看着不顺眼吗
也有可能是侵犯了洛谷的某个权
可那是洛谷输入(侵权?)+陈尚涵代码的运行结果啊{:10_277:}
我 14# 都没被删(会不会等会就没了)
zhangjinxuan
发表于 2023-7-30 13:24:56
tommyyu 发表于 2023-7-30 13:22
可那是洛谷输入(侵权?)+陈尚涵代码的运行结果啊
我 14# 都没被删
《头脑风暴》{:10_277:}
我就不知道了,如果CSP数据不会公开,这个可能是会构成侵权的{:10_277:}
tommyyu
发表于 2023-7-30 13:27:47
zhangjinxuan 发表于 2023-7-30 13:24
《头脑风暴》
我就不知道了,如果CSP数据不会公开,这个可能是会构成侵权的
https://help.luogu.com.cn/ula/luogu
3.6 用户不得侵犯洛谷网的知识产权,只能在自用以及授权范围内使用洛谷提供的洛谷自有知识产权的资源?
zhangjinxuan
发表于 2023-7-30 13:29:32
tommyyu 发表于 2023-7-30 13:27
https://help.luogu.com.cn/ula/luogu
3.6 用户不得侵犯洛谷网的知识产权,只能在自用以及授权范围内 ...
但是这个是官方数据啊(应该?),如果官方数据公布的话,那么,也不会构成侵权啊。
但是一般情况下第三人不会管这么多,可能就是因为太长了看着不顺眼就删了,影响他人阅读体验{:10_256:}(?
tommyyu
发表于 2023-7-30 13:32:38
zhangjinxuan 发表于 2023-7-30 13:29
但是这个是官方数据啊(应该?),如果官方数据公布的话,那么,也不会构成侵权啊。
但是一般情况下第 ...
有可能{:10_256:}
本来在这里我还想提交代码的,奈何回复有字数限制{:10_277:}
sfqxx_小
发表于 2023-7-30 20:34:52
{:10_269:}
陈尚涵
发表于 2023-7-30 20:36:45
tommyyu 发表于 2023-7-30 13:19
?不二把我的 17# 给删了
为什么你们说话我没有提醒啊
tommyyu
发表于 2023-7-30 20:46:21
陈尚涵 发表于 2023-7-30 20:36
为什么你们说话我没有提醒啊
互相回复帖子,不会给楼主提醒
Ewan-Ahiouy
发表于 2023-8-3 19:51:44
这道题用模拟的思路也许真的解不了{:10_250:}
建议换种思路,如sscanf函数{:10_264:}
#include <bits/stdc++.h>
using namespace std;
int n;
string op, ad;
map <string, int> p;
int ak(string s) {
long long a, b, c, d, e;
long long t = sscanf(s.c_str(), "%lld.%lld.%lld.%lld:%lld", &a, &b, &c, &d, &e);
if (t != 5) return 0;
if (a < 0 || a > 255 || b < 0 || b > 255 || c < 0 || c > 255 || d < 0 || d > 255 || e < 0 || e > 65535) return 0;
char s2;
sprintf(s2,"%d.%d.%d.%d:%d",a,b,c,d,e);
int len = s.size();
int f = 1;
for (int i = 0; i < len; i++) {
if (s == s2) f = 1;
else {
f = 0;
break;
}
}
return f;
}
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> op >> ad;
if (!ak(ad)) {
cout << "ERR" << endl;
} else {
if (op == 'S') {
if (p == 0) {
cout << "OK" << endl;
p = i + 1;
} else {
cout << "FAIL" << endl;
}
} else {
if (p == 0) {
cout << "FAIL" << endl;
} else {
cout << p << endl;
}
}
}
}
return 0;
}
高山
发表于 2023-8-4 12:03:06
#include <bits/stdc++.h>
using namespace std;
int n;
bool Check(string s) {
long long a, b, c, d, port;
if (sscanf(s.c_str(), "%lld.%lld.%lld.%lld:%lld", &a, &b, &c, &d, &port) != 5)return false;
if (a < 0 || a > 255 || b < 0 || b > 255 || c < 0 || c > 255 || d < 0 || d > 255 || port < 0 || port > 65535)return false;
stringstream ss;
ss << a << '.' << b << '.' << c << '.' << d << ':' << port;
return ss.str() == s;
}
map<string, int> mp;
string op, ad;
int main(int argc, char const *argv[]) {
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> op >> ad;
if (!Check(ad)) { cout << "ERR\n"; continue; }
if (op == 'S') {
if (mp) cout << "FAIL\n";
else mp = i, cout << "OK\n";
} else {
if (!mp.count(ad)) cout << "FAIL\n";
else cout << mp << '\n';
}
}
return 0;
}
欢迎抄代码,抄完代码惊喜送“作弊者”图标哦~
https://www.luogu.com.cn/problem/solution/P7911 欢迎来到这里进行抄代码。
您只要点击“查看题解”多做几次,惊喜获得“作弊者!!!!!!”