此题很水,暴力搜索,然后根据条件判断,continue掉一些循环就可以了,简称,剪枝,一次过!
下面上代码:
/* ID: bbsunch2 PROG: crypt1 LANG: C++ */ #include <iostream> #include <fstream> #include <stdlib.h> #include <vector> using namespace std; int main() { ofstream fout ("crypt1.out"); ifstream fin ("crypt1.in"); int digitNum; vector<int> digits; fin >> digitNum; for(int i = 0; i < digitNum; i++) { int d = 0; fin >> d; digits.push_back(d); } int a1 = 0; int a2 = 0; int a3 = 0; int b1 = 0; int b2 = 0; int c1 = 0; int c2 = 0; int c3 = 0; int d1 = 0; int d2 = 0; int d3 = 0; int e1 = 0; int e2 = 0; int e3 = 0; int e4 = 0; int A = 0; int B = 0; int C = 0; int D = 0; int E = 0; int caseNum = 0; for(int a1i = 0; a1i < digits.size(); a1i++) { a1 = digits[a1i]; for(int a2i = 0; a2i < digits.size(); a2i++) { a2 = digits[a2i]; for(int a3i = 0; a3i < digits.size(); a3i++) { a3 = digits[a3i]; A = a1*100 + a2*10 + a3; for(int b2i = 0; b2i < digits.size(); b2i++) { b2 = digits[b2i]; C = b2 * A; if(C < 100 || C > 999) { continue; } c1 = (int)(C / 100); c2 = (int)((C % 100)/10); c3 = C % 10; bool containC1 = false; bool containC2 = false; bool containC3 = false; for(int i = 0; i < digits.size(); i++) { if(c1 == digits[i]) { containC1 = true; } if(c2 == digits[i]) { containC2 = true; } if(c3 == digits[i]) { containC3 = true; } } if(!(containC1 && containC2 && containC3)) { continue; } for(int b1i = 0; b1i < digits.size(); b1i++) { b1 = digits[b1i]; D = b1 * A; if(D < 100 || D > 999) { continue; } d1 = (int)(D / 100); d2 = (int)((D % 100)/10); d3 = D % 10; bool containD1 = false; bool containD2 = false; bool containD3 = false; for(int i = 0; i < digits.size(); i++) { if(d1 == digits[i]) { containD1 = true; } if(d2 == digits[i]) { containD2 = true; } if(d3 == digits[i]) { containD3 = true; } } if(!(containD1 && containD2 && containD3)) { continue; } B = b1 * 10 + b2; E = A * B; if(E < 1000 || E > 9999) { continue; } e1 = (int)(E / 1000); e2 = (int)(E / 100) - e1 * 10; e3 = (int)((E % 100) / 10); e4 = (int)E%10; bool containE1 = false; bool containE2 = false; bool containE3 = false; bool containE4 = false; for(int i = 0; i < digits.size(); i++) { if(e1 == digits[i]) { containE1 = true; } if(e2 == digits[i]) { containE2 = true; } if(e3 == digits[i]) { containE3 = true; } if(e4 == digits[i]) { containE4 = true; } } if(containE1 && containE2 && containE3 && containE4) { caseNum ++; }else { continue; } } } } } } fout << caseNum << endl; return 0; }
运行结果 :
USACO 写道
USER: Chen Sun [bbsunch2]
TASK: crypt1
LANG: C++
Compiling...
Compile: OK
Executing...
Test 1: TEST OK [0.000 secs, 3356 KB]
Test 2: TEST OK [0.000 secs, 3356 KB]
Test 3: TEST OK [0.000 secs, 3356 KB]
Test 4: TEST OK [0.000 secs, 3356 KB]
Test 5: TEST OK [0.000 secs, 3356 KB]
Test 6: TEST OK [0.000 secs, 3356 KB]
Test 7: TEST OK [0.000 secs, 3356 KB]
All tests OK.
YOUR PROGRAM ('crypt1') WORKED FIRST TIME! That's fantastic
-- and a rare thing. Please accept these special automated
congratulations.
Here are the test data inputs:
------- test 1 ----
5
2 3 4 6 8
------- test 2 ----
4
2 3 5 7
------- test 3 ----
1
1
------- test 4 ----
7
4 1 2 5 6 7 3
------- test 5 ----
8
9 1 7 3 5 4 6 8
------- test 6 ----
6
1 2 3 5 7 9
------- test 7 ----
9
1 2 3 4 5 6 7 8 9
Keep up the good work!
Thanks for your submission!
TASK: crypt1
LANG: C++
Compiling...
Compile: OK
Executing...
Test 1: TEST OK [0.000 secs, 3356 KB]
Test 2: TEST OK [0.000 secs, 3356 KB]
Test 3: TEST OK [0.000 secs, 3356 KB]
Test 4: TEST OK [0.000 secs, 3356 KB]
Test 5: TEST OK [0.000 secs, 3356 KB]
Test 6: TEST OK [0.000 secs, 3356 KB]
Test 7: TEST OK [0.000 secs, 3356 KB]
All tests OK.
YOUR PROGRAM ('crypt1') WORKED FIRST TIME! That's fantastic
-- and a rare thing. Please accept these special automated
congratulations.
Here are the test data inputs:
------- test 1 ----
5
2 3 4 6 8
------- test 2 ----
4
2 3 5 7
------- test 3 ----
1
1
------- test 4 ----
7
4 1 2 5 6 7 3
------- test 5 ----
8
9 1 7 3 5 4 6 8
------- test 6 ----
6
1 2 3 5 7 9
------- test 7 ----
9
1 2 3 4 5 6 7 8 9
Keep up the good work!
Thanks for your submission!
相关推荐
【USACO题解】全集包含了各类不同的编程竞赛题目,旨在帮助参赛者提升算法思维和编程能力。本文主要解析其中三个题目:“Your Ride Is Here (ride)”,“Greedy Gift Givers (gift1)”,以及“Friday the Thirteenth...
本压缩包包含了USACO比赛的题解、源代码以及对应的中文翻译,对于想要参加或者正在准备USACO的同学们来说,无疑是一份宝贵的资源。 首先,让我们来详细了解USACO题解部分。USACO的比赛题目通常涉及各种算法,包括但...
3. **枚举算法**:例如题目《Prime Cryptarithm》,需要枚举数字来满足特定的数学条件。 4. **位运算技巧**:在某些题目中,比如《Checker Challenge》,使用位运算可以极大地优化剪枝过程,提高效率。 ### 第二章...
"USACO题解(NOCOW整理版).pdf"可能是某个特定用户或团队整理的题解版本,可能包含了一些独特的解题方法或者技巧,或者是对原题解的补充和完善,使得学习者可以从不同的角度理解问题。 最后,"USACO全部测试数据.rar...
### USACO Chap3 题解概览 #### Agri-Net (agrinet) - **知识点**:本题是一道经典的最小生成树问题。最小生成树问题是指在一个连通带权图中找到一棵包含所有顶点的树,使得这棵树上的所有边的权重之和最小。 - *...
### USACO Chap4 题解概览 #### BeefMcNuggets(nuggets) **问题背景**:本节讨论了如何确定一系列特定数量的牛肉麦乐鸡块(nuggets)是否能够通过给定的基本包装组合而成。这是一个典型的背包问题,在实际问题中...
### USACO Chap1 题解概览 #### YourRideIsHere(ride) - **题目概述**:此题目属于“adhoc”类别,即它并不需要特别复杂的算法或高级技巧来解决,而是需要一些基本逻辑思维和细心观察。 - **解题策略**:题目给出...
通过学习这些USACO题解,你可以逐步提升自己的编程能力和算法理解,为参与更高难度的计算机竞赛或实际的软件开发打下坚实基础。记住,实践是检验理解的最好方式,不断动手编写和调试代码,才能真正掌握这些知识。
【USACO月赛题解1】中的知识点涵盖了多种算法和问题解决策略,适用于计算机科学,尤其是算法竞赛。以下是对各个题目及其所涉及算法的详细解释: 1. **Fiber Communications** - 这是一个并查集(Disjoint Set Union...
我的USACO题解和程序
资源包包括USACO 2001-2007年月赛的测试数据;usaco月赛十年题典(2000-2009),usaco月赛2002-2008题解。单独下载需资源分30分以上。为了方便编程爱好者,我这边统一下载打包。欢迎下载。
USACO 题解 USACO 题解是美国计算机奥林匹克(USACO)竞赛的题解集合,本文档提供了多个题目的解释和解决方案,涵盖了 Greedy Algorithm、Hash 表、动态规划、搜索等多种算法和技术。 Chapter 1 Section 1.1 Your ...
1. 题解:这些题解详细解释了如何理解和解决USACO比赛中的各种问题。通常会涵盖问题分析、算法设计、代码实现和时间复杂度分析等方面,有助于读者理解解决问题的关键思路。 2. 程序:每道题目的解决方案通常会有一...
usaco全部题解。 网址:blog.csdn.net/jiangshibiao
这份压缩包包含了USACO训练教程的部分题解及中文译题,覆盖了从基础到进阶的多个章节,帮助学习者逐步提升编程和算法技能。 1. **基础篇(1.1.1)** - **数据结构基础**:在这一部分,通常会介绍数组、链表、栈和...
本压缩包“ACM----USACO Training(解题博客网)”提供了USACO Training的解题代码资源,这对于参赛者或者想要提升算法能力的学习者来说是一份宝贵的参考资料。通过研究这些代码,你可以了解到各种算法的实际应用和...
usaco的某道题的题解
USACO(United States of America Computing Olympiad,美国信息学奥林匹克竞赛)是一个面向中学生的计算机编程竞赛,题解整理版中涉及的几个题目,下面将一一介绍它们的解题思路和涉及的关键知识点。 首先,...