NWU_ACM

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2017年3月18日

摘要: 1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 int T, n, i; 6 cin >> T; 7 int x[100]; 8 while (T--) 9 { 10 cin >> n; 11 for (i = 1; i 阅读全文
posted @ 2017-03-18 20:51 NWU_ACM 阅读(135) 评论(0) 推荐(0) 编辑

摘要: #include #include int dp[1005][1005]; char str1[1005],str2[1005]; int min(int a,int b,int c){ int min=a; if(min>b) min=b; if(min>c) min=c; return min; } int main() { int n,m; ... 阅读全文
posted @ 2017-03-18 16:05 NWU_ACM 阅读(148) 评论(0) 推荐(0) 编辑