主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
杨德胜
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
37
发帖
0
笔记
0
Ta的粉丝
168
关注数
0
粉丝数
168
获赞数
13
阅读数
285177
P1161 解题思路分享
#include <bits/stdc++.h> using namespace std; typedef struct BinNode{ char e; struct BinNode* lchild; struct BinNode* rchild; }Bin...
P1161
2021年3月22日 19:20
回复 0
|
赞 0
|
浏览 9.0k
P1109 解题思路分享
#include <bits/stdc++.h> using namespace std; typedef struct BinNode{ char e; struct BinNode* lchild; struct BinNode* rchild; }B...
P1109
2021年3月22日 17:47
回复 0
|
赞 0
|
浏览 10.2k
P1225 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int book[m+1]; for(int i=...
P1225
2021年3月21日 01:03
回复 0
|
赞 0
|
浏览 7.0k
P1025 解题思路分享
#include <bits/stdc++.h> using namespace std; typedef struct Node{ int n; struct Node* next; }Node,*Link; Link createnode(int e){...
P1025
2021年3月20日 16:23
回复 0
|
赞 0
|
浏览 8.7k
P1015 解题思路分享
#include <bits/stdc++.h> using namespace std; typedef struct Node{ int Element; struct Node* next; }Node,*Link; Link createnode...
P1015
2021年3月19日 14:21
回复 0
|
赞 0
|
浏览 7.9k
P1838 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { char s[10005]; while(cin>>s){ stack<char> st; for(int i...
P1838
2021年3月16日 15:19
回复 0
|
赞 0
|
浏览 7.6k
P1067 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { map<char,int> m; m['<']=0,m['(']=1,m['[']=2,m['{']=3; int n; ...
P1067
2021年3月16日 14:02
回复 0
|
赞 0
|
浏览 7.1k
P1176 解题思路分享
while True: try: print(int(bin(int(input())).replace('0b','')[-1::-1],2)) except: break
P1176
2021年3月14日 14:38
回复 0
|
赞 1
|
浏览 10.0k
P1375 解题思路分享
#include <bits/stdc++.h> using namespace std; bool issu(int n){ for(int i=sqrt(n); i>1; i--){ if(n%i==0) return false; } re...
P1375
2021年3月12日 15:54
回复 0
|
赞 0
|
浏览 7.1k
P1355 解题思路分享
#include <bits/stdc++.h> using namespace std; bool issu(int n){ for(int i=sqrt(n); i>1; i--){ if(n%i==0) return false; } re...
P1355
2021年3月12日 13:59
回复 0
|
赞 0
|
浏览 6.7k
P1013 解题思路分享
#include <bits/stdc++.h> using namespace std; bool issu(int n){ for(int i=sqrt(n); i>1; i--){ if(n%i==0) return false; } re...
P1013
2021年3月12日 13:53
回复 0
|
赞 1
|
浏览 7.2k
P1180 解题思路分享
#include <bits/stdc++.h> using namespace std; int gcd(int a, int b){ if(b==0) return a; else return gcd(b,a%b); } int main() { ...
P1180
2021年3月12日 13:07
回复 0
|
赞 0
|
浏览 7.3k
P1500 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ int ans=1; for(int i=0; i<5; i++){...
P1500
2021年3月11日 20:37
回复 0
|
赞 2
|
浏览 7.2k
P1383 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ int a[n]; for(int i=0; i<n; i++) ...
P1383
2021年3月9日 19:08
回复 0
|
赞 3
|
浏览 7.8k
P1388 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int n,m; while(cin>>n){ int a[n]; map<int,int> M; ...
P1388
2021年3月9日 18:32
回复 0
|
赞 0
|
浏览 6.6k
P1177 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int N,M; while(cin>>N>>...
P1177
2021年3月9日 18:09
回复 0
|
赞 2
|
浏览 9.4k
P1412 解题思路分享
#include <bits/stdc++.h> using namespace std; bool cmp(string a, string b){ if(a.size()==b.size()) return a<b; else return a....
P1412
2021年3月8日 21:00
回复 0
|
赞 0
|
浏览 8.3k
P1400 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int N; cin>>N; char a[N]={0}; for(int i=0; i<N; i++) ci...
P1400
2021年3月8日 20:45
回复 0
|
赞 0
|
浏览 6.7k
P1399 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int a[105]; for(int i=0; i<n; i++) cin&g...
P1399
2021年3月8日 20:35
回复 0
|
赞 0
|
浏览 8.1k
P1360 解题思路分享
#include <bits/stdc++.h> using namespace std; int main() { while(cin>>s){ char s[205]; sort(s,s+strlen(s)); cou...
P1360
2021年3月8日 20:15
回复 0
|
赞 0
|
浏览 6.7k
1
2
本科学校:西南科技大学城市学院
目标学校:重庆理工大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!