主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
yanmy
2024年3月15日 12:14
容器 好用,爱用
P1415
回复 0
|
赞 0
|
浏览 453
#include <iostream> #include <string> #include <vector> #include <map> using namespace std; int main() { string str; while (cin >> str) { map<char, vector<int>...
玛奇朵呀
2023年9月21日 21:53
找位置 题解:
P1415
回复 3
|
赞 0
|
浏览 767
请问是哪里出了问题呢?在本地运行测试的时候结果正确 #include<stdio.h> #include<string.h> #define N 1000 void main(){ char a[N]; int i,j,flag; while(scanf("%s",a)!=EOF){ for(i=0;i<strlen(a);i++){ &nb...
CSUOJ
2023年3月29日 14:55
一次遍历
P1415
回复 0
|
赞 0
|
浏览 2.1k
#include <iostream> #include <string.h> using namespace std; int main(void){ char str[105]; while(cin >> str){ int temp; int* p = new int[300]; for(int i = 0; i < 300; i++) p[i] = -1; int* loc = new int[105]; ...
题目
找位置
题解数量
3
发布题解
热门题解
1
一次遍历
2
找位置 题解:
3
容器 好用,爱用