主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
滴滴答答
2021年3月17日 16:03
T和Y的计划
P1028
回复 0
|
赞 0
|
浏览 7.0k
#include<bits/stdc++.h> using namespace std; struct Point { double x,y,z; Point():x(),y(),z(){} Point(double x,double y,double z):x(x),y(y),z(z){} Point operator -(const Point&a) { return Point(x-a.x,y-a.y,z-a.z); } Point operator +(const...
hijack
2020年7月12日 09:37
T和Y的计划
P1028
回复 0
|
赞 0
|
浏览 9.4k
//T和Y的计划 #include<iostream> #include<iomanip> #include<cmath> #include <cfloat> using namespace std; #define max 5005 typedef struct { double x, y, z; }pos; pos p[max]; int main() { int n; cin >> n; pos acm, future, middle; double minDi...
hijack
2020年7月10日 20:40
二元组100%
P1028
回复 0
|
赞 1
|
浏览 9.0k
//二元组整数 #include <iostream> using namespace std; typedef struct { int num; //出现两次以上的数,从第二个重复数字起开始标记为1,(初始为0)为之后对标记位为1的数不作处理; int flag; //重复数标记位 int reFlag; }Num; bool bubbleSort(Num a[], int n); int main() { Num a[30]; int n; cin >> n; //初始化结构体 ...
ymw1836828452
2020年5月3日 13:31
(非链表)
P1028
回复 0
|
赞 0
|
浏览 7.3k
#include <stdio.h> #include <stdlib.h> #include<math.h> typedef struct { double a,b,c; struct star *next; }star; int main() {star a[5000],True,acm; int i,j=0,n; scanf("%d",&n); for(i=0;i<n;i++) { scanf(&qu...
ymw1836828452
2020年5月3日 13:15
(超时了,o(^▽^)o,供参考)
P1028
回复 0
|
赞 0
|
浏览 7.2k
#include <stdio.h> #include <stdlib.h> #define len sizeof(struct star) struct star { float a,b,c; struct star *next; }; int main() { int n,m,k; scanf("%d",&n);k=n; struct star *p,*q,*hea...
A1120161820
2020年3月23日 11:05
T和Y的计划(c++)
P1028
回复 1
|
赞 1
|
浏览 8.6k
#include<iostream> #include<cstdio> #include<cmath> #include<vector> using namespace std; typedef struct Node{ double x; double y; double z; }LNode; int main() { int n; LNode acm, future, midp; vector<LNode> vct; cin >> n; for (int i =...
mzymzyo
2020年2月23日 17:48
题解:T和Y的计划
P1028
回复 0
|
赞 0
|
浏览 10.6k
#include<cstdio> #include<cmath> #include<iostream> using namespace std; struct pos//记录星球位置的结构体 { double x, y, z; }A,F,mid,p[5050]; ////////////////////////////////////////////////////////////////////////// double dist(double x1, double y1, double z1, doubl...
题目
T和Y的计划
题解数量
7
发布题解
热门题解
1
T和Y的计划(c++)
2
二元组100%
3
题解:T和Y的计划
4
(超时了,o(^▽^)o,供参考)
5
(非链表)
6
T和Y的计划
7
T和Y的计划