码迷,mamicode.com
首页 >  
搜索关键字:pat    ( 13517个结果
perl package
#!/usr/bin/perl?-w use?strict; use?File::Basename; use?XML::Simple; package?CITIC; my?$TPMS_EOD_ETC=$ENV{TPMS_EOD_ETC}; #return?script?name sub?getscript_name{ ?????????my($pat...
分类:其他好文   时间:2014-11-10 18:16:58    阅读次数:251
[PAT]1005. Spell It Right (20)
/************************************************************** 1005. Spell It Right (20) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Given a non-negative integer N, your task...
分类:其他好文   时间:2014-11-10 13:49:48    阅读次数:138
PAT 1025 PAT Ranking
#include #include #include #include #include #include using namespace std;class Man {public: char id[14]; int location; int score; int loc...
分类:其他好文   时间:2014-11-09 23:35:17    阅读次数:238
PAT-1034 Head of a Gang (30)
这道题目刚开始想用并查集来做,但是其实不通的,因为有可能是环,不确保是一个图。这道题目第一想法应该是用DFS来做,BFS也行,不过用DFS习惯了。// 1034.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include#include#include//st...
分类:其他好文   时间:2014-11-09 22:15:22    阅读次数:234
PAT 1062 Talent and Virtue
#include #include #include #include #include using namespace std;class Man {public: char id[10]; int talent; int virtue;};bool mycmp(const Ma...
分类:其他好文   时间:2014-11-08 22:05:42    阅读次数:205
PAT 1083
1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 struct Student{ 9 int grade;10 string name;11 string id;12...
分类:其他好文   时间:2014-11-08 21:59:55    阅读次数:121
PAT 1049 Counting Ones
#include #include using namespace std;#define COL 10#define ROW 10int tbl[ROW][COL];void print(int* tbl) { for (int i=0; i<ROW; i++) { for (...
分类:其他好文   时间:2014-11-08 21:57:48    阅读次数:252
PAT 1050 String Subtraction
#include #include using namespace std;int main() { bool tbl[256] = {0}; char line[10009]; int len = 0; char ch; while (true) { s...
分类:其他好文   时间:2014-11-08 16:43:00    阅读次数:192
PAT 1066 Root of AVL Tree
#include #include class Node {public: Node* L; Node* R; int height; int data; Node(int val, Node* l = NULL, Node* r = NULL, int h = 0):...
分类:其他好文   时间:2014-11-08 16:39:27    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!