每天一水SGU347】的更多相关文章

今天本来应该要写校题解报告的,但是CF跪了,一题都没JUDGE出来,最后比赛取消了~郁闷啊! 后来闲的无事,就到处看看contest,随便点进去一个,看到一水题,几分钟写完,马上就WA了!~ 题目的信息含量太低了!我直接看样例.以为是字典序排序后连起来输出,没想到是使得最后连起来的字典序最小. 本来我因为mutilset轻松水过,后来--还是用mutilset水的.重载下小于就好了. 题目: Description His Royal Highness King of Berland Berl…
总时间限制:  1000ms 内存限制:  65536kB 描述 找出正整数 M 和 N 之间(N 不小于 M)的所有真素数.真素数的定义:如果一个正整数 P 为素数,且其反序也为素数,那么 P 就为真素数.例如,11,13 均为真素数,因为11的反序还是为11,13 的反序为 31 也为素数. 输入 输入两个数 M 和 N,空格间隔,1 <= M <= N <= 100000. 输出 按从小到大输出 M 和 N 之间(包括 M 和 N )的真素数,逗号间隔.如果之间没有真素数,则输出…
Babelfish Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 32988   Accepted: 14189 Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you have…
题意: 给你一个残缺的塔,每个数字由他下面左右两个数相加得.给你其中一部分,要求输出全部的数字. #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> using namespace std; const int maxn = 25; int tmap[25][25]; int main() { int T; scanf("%d",&…
A - 棋盘问题 Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Submit Status Description 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C. Input 输入含有多组测试数据. 每组数据的第一行是两个正整数,n k,…
1. POJ 3299 Humidex 链接: http://poj.org/problem?id=3299 这道题是已知H,D,T三者的运算关系,然后告诉你其中两个.求另一个. #include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main () { char c,h; double T,D,H; while(cin>…
E - Biorhythms Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Submit Status Description Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the…
All in All Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 29651   Accepted: 12312 Description You have devised a new encryption technique which encodes a message by inserting between its characters randomly generated strings in a clever…
#include<iostream> #include<cstdio> #include<string.h> #include<algorithm> using namespace std; #define INF 0x3f3f3f3f #define N 110 int ma[N][N]; int n; int dis[N]; bool vis[N]; void init() { for(int i=0;i<=n;i++) { for(int j=0…
课间水一水,CCF备战 package com.company.cf346; import java.io.InputStreamReader; import java.util.Scanner; /** * Created by Admin on 2016/4/5. */ public class a { public static void main(String[] args){ Scanner sc = new Scanner(new InputStreamReader(System.i…