最新 最热

承压计算

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>#include<cstring>#include<algorithm>using namespace std;double arr[33][33];int arrfinal[33][33];int......

2022-06-28
0

洛谷1723 高手过愚人节

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。// 洛谷1723 高手过愚人节.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>#include<string>#include<cstring>#prag...

2022-06-28
0

洛谷P1014

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。// 洛谷P1014.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>using namespace std;int gy(int a, int b){in......

2022-06-28
0

洛谷P1014 Cantor表

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。// 洛谷P1014 Cantor表.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>using namespace std;int main(){int ......

2022-06-28
0

洛谷P1187 3D模型

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。// 洛谷P1187 3D模型.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>using namespace std;void test1(int ***p,in....

2022-06-28
0

求最大公约数

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。// 求最大公约数.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>using namespace std;int main(){int a, b, r;......

2022-06-28
0

39级台阶

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int count=0;void f(int n,int m){if(n>39){return;}if(n==39&&m%2==0){cou......

2022-06-28
0

dp背包

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int arr[][4]={{5,150},{3,240},{2,140},{1,200}};int dg(int step,int sumW){//cout<......

2022-06-28
0

dp二维求苹果

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int arr[10][10][2];int dg(int x,int y){cout<<"arr[x][y][1]"<<arr[x][y][1]<<endl;......

2022-06-28
0

dp最长非降序子串

本文最后更新于 1170 天前,其中的信息可能已经有所发展或是发生改变。#include<iostream>using namespace std;int main(){int arr[10];int d[10];for(int i=0;i<10;i++){cin>>arr[i];d[i]......

2022-06-28
0