问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

C++Runtime error在ZOJ上的题目

发布网友 发布时间:2022-04-14 15:47

我来回答

4个回答

懂视网 时间:2022-04-14 20:08

All 6 sides of a cube are to becoated with paint. Each side is is coated uniformly with one color. When a selectionof n different colors of paint is available, how many different cubes can youmake? Note that any two cubes are onlyto be cal

All 6 sides of a cube are to becoated with paint. Each side is is coated uniformly with one color. When a selectionof n different colors of paint is available, how many different cubes can youmake?

Note that any two cubes are onlyto be called "different" if it is not possible to rotate the one intosuch a position that it appears with the same coloring as the other.

Input

Each line of the input filecontains a single integer n(0

Output

For each line of input produce oneline of output. This line should contain the number of different cubes that canbe made by using the according number of colors.

SampleInput Outputfor Sample Input

1

2

0

1

10


Problem setter: EricSchmidt

Special Thanks: DerekKisman, EPS

题意:求用n中颜色涂立方体的不同种数,能旋转到的算一种

题意:和上一题UVA - 10601 Cubes (组合+置换) 的立方体旋转考虑的分类是一样的,不过这里我们考虑的是涂面的情况

1.不变置换(1)(2)(3)(4)(5)(6), 共1个;

2.沿对面中心轴旋转 90度, 270度 (1)(2345)(6), (1)(5432)(6) 同类共 6个;

3.沿对面中心轴旋转 180度 (1)(24)(35)(6), 同类共 3个;

4.沿对角线轴旋转 120度, 240度 (152)(346), (251)(643) 同类共 8个;

5.沿对边中点轴旋转 180度 (16)(25)(43) 同类共 6个;

[cpp] view plaincopy
在CODE上查看代码片派生到我的代码片
  1. #include 
  2. #include 
  3. #include 
  4. #include 
  5. #include 
  6. typedef long long ll;
  7. using namespace std;
  8. ll n;
  9. ll still() {
  10. return n * n * n * n * n * n;
  11. }
  12. ll point() {
  13. return 4 * 2 * n * n;
  14. }
  15. ll edge() {
  16. return 6 * n * n * n;
  17. }
  18. ll plane() {
  19. return 3 * 2 * n * n * n + 3 * n * n * n * n;
  20. }
  21. ll polya() {
  22. ll ans = 0;
  23. ans += still();
  24. ans += point();
  25. ans += edge();
  26. ans += plane();
  27. return ans / 24;
  28. }
  29. int main() {
  30. while (scanf("%lld", &n) != EOF && n) {
  31. printf("%lld
    ", polya());
  32. }
  33. return 0;
  34. }

热心网友 时间:2022-04-14 17:16

#include <iostream>
#include <algorithm>
using namespace std;

int cmp(const int &a, const int &b)
{
return a < b;
}

int main()
{
int a,i,j,cu[100010];
while(cin>>a)
{
for(i=0;i<a;i++)
{
cin>>cu[i];
}
sort(cu, cu+a, cmp);
for(i=0;i<a-1;i++)
{
cout<<cu[i]<<' ';
}
cout<<cu[a-1]<<endl;
}
return 0;
}

热心网友 时间:2022-04-14 18:34

//完全偷懒,使用STL
#include <iostream>
#include <vector>
#include <algorithm>

using std::cin;
using std::cout;
using std::vector;
using std::endl;

int main()
{
vector<int> vi;
unsigned int sz;
cout<<"输入排序数目:"<<endl;
cin>>sz;
cout<<"输入数组:"<<endl;
int i;
while(cin>>i) vi.push_back(i);
std::sort(vi.begin(),vi.begin()+sz);
cout<<"排序完毕:"<<endl;
for(std::vector<int>::const_iterator it=vi.begin(); it!=vi.end(); ++it) cout<<*it<<endl;
return 0;
}

热心网友 时间:2022-04-14 20:09

while(cin>>a)
这个有问题,你没有退出的条件。
可以不用这个while的
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
抖音弹幕怎么关掉?怎么关闭抖音弹幕? 惠普LaserJet P3005D是否支持B5纸的双面打印? word打印出图片总是缺一部分怎么办-word打印图片不完整怎么解决_百度... 理想one哪里产的车辆? 抚州抚州ONE在哪里? one地址在哪里? 如何在图片上写字(如何在图片上添加文字) 网商贷为什么钱没到账 高级经济师职称怎么评 高级经济师需要评审吗 腮腺炎脑膜炎有后遗症吗 腮腺炎并发症脑膜炎怎么判断 腮腺炎可以引起病毒性脑膜炎吗?病毒性脑膜炎必须做腰穿这一项检查吗? 腮腺炎有什么后遗症 腮腺炎不治会自愈吗? 腮腺炎引发的脑膜炎能完全治愈吗? 腮腺炎可引起什么病 得了腮腺炎怎么办 怎样防止转为脑膜炎 腮腺炎病发脑膜炎治愈后康复的问题 请教小儿腮腺炎与脑膜炎的相关问题。 腮腺炎引起的脑膜炎有危险吗? 腮腺炎引发的脑膜炎能完全治愈吗 为什么我的枕头套会长这些东西?? 腮腺炎引发的脑膜炎有哪些症状 什么是同声传译,与口译和会议口译怎么区别? 0分 我得了腮腺炎头很疼很晕,这个和脑膜炎有关系吗大神们帮帮忙 腮腺炎引起的脑膜炎有哪些表现 一个长方形的枕头大概长多少,宽又是多少? 国际会议上使用“同声翻译器”?怎么个工作原理? 如果我想希望多语言“会场”能同声传译,令参与人感受完美会务体验,需要怎么做啊? 加拿大鹅2580la和2580l的区别 女生怎么选加拿大鹅 简单检索是什么,填空题? 某同学在一次试检索以后发现检索结果中有80%都是与课题无关的文献,请您指出可以是哪些原因导致的这种结 怎么给自己的幼儿园做推广? 简单检索和复杂检索的区别在于什么? 如何学习推广公众号?? 毛线编织颜色怎么搭配好看 CALIS OPAC系统 简单检索方式有哪些检索途径, :维普资讯网《中文科技期刊数据库》有哪几种检索方式? 毛线颜色怎样搭配? 毛线颜色怎样搭配 毛线颜色搭配技巧买购网 黄色毛线与什么颜色搭配? 幼儿园怎么做招生?怎么做推广?有没有这方面的培训机构?天地人和教育好吗? 黄色毛线搭配什么颜色的线好看 让家长关注幼儿园公众号应该怎么说 太平洋人寿保险月缴500元保费是什么险? 招商信诺臻惠保重疾险有必要买?性价比高吗? 建筑施工现场安全管理制度(综合的) 把手门锁怎么拆? 小寻X3怎样回复出厂设置?