主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
My_opt
2022年5月20日 23:00
优先队列
P1381
回复 0
|
赞 1
|
浏览 4.6k
#include <bits/stdc++.h> using namespace std; struct plural { int mod; string val; bool operator< (const plural &W)const { return mod < W.mod; } }; int get(string s) { int x = atoi(s.c_str()); return x * x; } int main() { ios::sync_with_stdio(...
kas
2022年3月16日 21:09
复数集合
P1381
回复 0
|
赞 0
|
浏览 4.8k
#include<iostream> #include<vector> #include<algorithm> #include<string> using namespace std; int main() { int n; string opt, bd; vector<pair<int, int> > vec; while (cin >&...
JohnWang
2021年3月28日 10:55
复数参考实现
P1381
回复 0
|
赞 0
|
浏览 10.7k
#include <iostream> #include <vector> #include <string.h> #include <algorithm> using namespace std; struct Complex{ double real, imag; }; bool cmp(Complex a, Complex b) { double ma = a.real*a.real+a.imag*a.imag; double mb = b.real*b.real+b.imag*...
iloveacm
2020年2月19日 19:02
1381 输入输出没问题,不知道错在哪了
P1381
回复 0
|
赞 0
|
浏览 7.4k
#include <iostream> #include <stdio.h> #include <algorithm> #include <string.h> using namespace std; struct node{ int a; int b; }buf[100]; bool cmp(node c,node d){ int i=c.a*c.a+c.b*c.b; int j=d.a*d.a...
题目
复数集合
题解数量
4
发布题解
热门题解
1
优先队列
2
1381 输入输出没问题,不知道错在哪了
3
复数集合
4
复数参考实现